| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038 |
- 2025-05-14 11:07:14.175 [INFO] [restartedMain] [com.ruoyi.AdminApplication.logStarting:55] - Starting AdminApplication using Java 20.0.2 on qiniu with PID 25652 (started by QiniuKj in D:\workspace\echo2.0)
- 2025-05-14 11:07:14.180 [DEBUG] [restartedMain] [com.ruoyi.AdminApplication.logStarting:56] - Running with Spring Boot v2.5.15, Spring v5.3.27
- 2025-05-14 11:07:14.180 [INFO] [restartedMain] [com.ruoyi.AdminApplication.logStartupProfileInfo:680] - No active profile set, falling back to 1 default profile: "default"
- 2025-05-14 11:07:14.181 [DEBUG] [restartedMain] [org.springframework.boot.SpringApplication.load:713] - Loading source class com.ruoyi.AdminApplication
- 2025-05-14 11:07:14.183 [DEBUG] [restartedMain] [org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.prepareRefresh:629] - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4545c843
- 2025-05-14 11:07:14.184 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
- 2025-05-14 11:07:14.184 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
- 2025-05-14 11:07:14.205 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\DataScopeAspect.class]
- 2025-05-14 11:07:14.206 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\DataSourceAspect.class]
- 2025-05-14 11:07:14.206 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\LogAspect.class]
- 2025-05-14 11:07:14.207 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\RateLimiterAspect.class]
- 2025-05-14 11:07:14.208 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ApplicationConfig.class]
- 2025-05-14 11:07:14.208 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\CaptchaConfig.class]
- 2025-05-14 11:07:14.210 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\DruidConfig.class]
- 2025-05-14 11:07:14.211 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\FilterConfig.class]
- 2025-05-14 11:07:14.211 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\MybatisPlusConfig.class]
- 2025-05-14 11:07:14.212 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\RedisConfig.class]
- 2025-05-14 11:07:14.212 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ResourcesConfig.class]
- 2025-05-14 11:07:14.212 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\SaTokenConfig.class]
- 2025-05-14 11:07:14.213 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\SecurityConfig.class]
- 2025-05-14 11:07:14.213 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ServerConfig.class]
- 2025-05-14 11:07:14.214 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ThreadPoolConfig.class]
- 2025-05-14 11:07:14.214 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\WebSocketConfigOne.class]
- 2025-05-14 11:07:14.214 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\properties\DruidProperties.class]
- 2025-05-14 11:07:14.214 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\properties\PermitAllUrlProperties.class]
- 2025-05-14 11:07:14.215 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\interceptor\RepeatSubmitInterceptor.class]
- 2025-05-14 11:07:14.215 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\interceptor\impl\SameUrlDataInterceptor.class]
- 2025-05-14 11:07:14.216 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\manager\ShutdownManager.class]
- 2025-05-14 11:07:14.216 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\manager\blockcc\BlockccManager.class]
- 2025-05-14 11:07:14.217 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\filter\JwtAuthenticationTokenFilter.class]
- 2025-05-14 11:07:14.217 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\handle\AuthenticationEntryPointImpl.class]
- 2025-05-14 11:07:14.217 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\handle\LogoutSuccessHandlerImpl.class]
- 2025-05-14 11:07:14.219 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\exception\GlobalExceptionHandler.class]
- 2025-05-14 11:07:14.219 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\BlockccService.class]
- 2025-05-14 11:07:14.220 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\PermissionService.class]
- 2025-05-14 11:07:14.220 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysLoginService.class]
- 2025-05-14 11:07:14.220 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysPasswordService.class]
- 2025-05-14 11:07:14.221 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysPermissionService.class]
- 2025-05-14 11:07:14.221 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysRegisterService.class]
- 2025-05-14 11:07:14.221 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\TokenService.class]
- 2025-05-14 11:07:14.221 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\UserDetailsServiceImpl.class]
- 2025-05-14 11:07:14.242 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayFactory.class]
- 2025-05-14 11:07:14.242 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayOutFactory.class]
- 2025-05-14 11:07:14.242 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayOutService.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayService.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiActivityServiceImpl.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiOrderServiceImpl.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiRateServiceImpl.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\FileServiceImpl.class]
- 2025-05-14 11:07:14.243 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\ITUserCoinServiceImpl.class]
- 2025-05-14 11:07:14.244 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\KlineSymbolServiceImpl.class]
- 2025-05-14 11:07:14.244 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\SettingServiceImpl.class]
- 2025-05-14 11:07:14.244 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\SmsServiceImpl.class]
- 2025-05-14 11:07:14.244 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TActivityRechargeServiceImpl.class]
- 2025-05-14 11:07:14.244 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAgentActivityInfoServiceImpl.class]
- 2025-05-14 11:07:14.245 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppAddressInfoServiceImpl.class]
- 2025-05-14 11:07:14.245 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppAssetServiceImpl.class]
- 2025-05-14 11:07:14.245 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppMailServiceImpl.class]
- 2025-05-14 11:07:14.246 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppRechargeServiceImpl.class]
- 2025-05-14 11:07:14.246 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppUserDetailServiceImpl.class]
- 2025-05-14 11:07:14.246 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppUserServiceImpl.class]
- 2025-05-14 11:07:14.246 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppWalletRecordServiceImpl.class]
- 2025-05-14 11:07:14.247 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppuserLoginLogServiceImpl.class]
- 2025-05-14 11:07:14.247 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TBotKlineModelInfoServiceImpl.class]
- 2025-05-14 11:07:14.247 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TBotKlineModelServiceImpl.class]
- 2025-05-14 11:07:14.247 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCollectionOrderServiceImpl.class]
- 2025-05-14 11:07:14.247 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractCoinServiceImpl.class]
- 2025-05-14 11:07:14.248 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractLossServiceImpl.class]
- 2025-05-14 11:07:14.248 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractOrderServiceImpl.class]
- 2025-05-14 11:07:14.248 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractPositionServiceImpl.class]
- 2025-05-14 11:07:14.248 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCurrencyOrderServiceImpl.class]
- 2025-05-14 11:07:14.249 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCurrencySymbolServiceImpl.class]
- 2025-05-14 11:07:14.249 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TExchangeCoinRecordServiceImpl.class]
- 2025-05-14 11:07:14.249 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THelpCenterInfoServiceImpl.class]
- 2025-05-14 11:07:14.249 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THelpCenterServiceImpl.class]
- 2025-05-14 11:07:14.249 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THomeSetterServiceImpl.class]
- 2025-05-14 11:07:14.250 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TLoadOrderServiceImpl.class]
- 2025-05-14 11:07:14.250 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TLoadProductServiceImpl.class]
- 2025-05-14 11:07:14.250 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMarketsServiceImpl.class]
- 2025-05-14 11:07:14.250 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineFinancialServiceImpl.class]
- 2025-05-14 11:07:14.251 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineOrderDayServiceImpl.class]
- 2025-05-14 11:07:14.251 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineOrderServiceImpl.class]
- 2025-05-14 11:07:14.251 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineUserServiceImpl.class]
- 2025-05-14 11:07:14.251 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingOrderServiceImpl.class]
- 2025-05-14 11:07:14.251 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingProductServiceImpl.class]
- 2025-05-14 11:07:14.252 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingProductUserServiceImpl.class]
- 2025-05-14 11:07:14.252 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftOrderServiceImpl.class]
- 2025-05-14 11:07:14.252 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftProductServiceImpl.class]
- 2025-05-14 11:07:14.252 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftSeriesServiceImpl.class]
- 2025-05-14 11:07:14.252 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNoticeServiceImpl.class]
- 2025-05-14 11:07:14.253 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOptionRulesServiceImpl.class]
- 2025-05-14 11:07:14.253 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOwnCoinOrderServiceImpl.class]
- 2025-05-14 11:07:14.253 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOwnCoinServiceImpl.class]
- 2025-05-14 11:07:14.253 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondCoinConfigServiceImpl.class]
- 2025-05-14 11:07:14.253 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondContractOrderServiceImpl.class]
- 2025-05-14 11:07:14.254 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondPeriodConfigServiceImpl.class]
- 2025-05-14 11:07:14.254 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSpontaneousCoinServiceImpl.class]
- 2025-05-14 11:07:14.254 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSymbolManageServiceImpl.class]
- 2025-05-14 11:07:14.254 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSymbolsServiceImpl.class]
- 2025-05-14 11:07:14.254 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TUserBankServiceImpl.class]
- 2025-05-14 11:07:14.255 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TUserSymbolAddressServiceImpl.class]
- 2025-05-14 11:07:14.255 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TWithdrawServiceImpl.class]
- 2025-05-14 11:07:14.255 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\UncPayOutServiceImpl.class]
- 2025-05-14 11:07:14.255 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\UncPayServiceImpl.class]
- 2025-05-14 11:07:14.256 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\config\SocketThreadPoolTaskConfig.class]
- 2025-05-14 11:07:14.256 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\config\WebSocketConfig.class]
- 2025-05-14 11:07:14.258 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\manager\WebSocketUserManager.class]
- 2025-05-14 11:07:14.258 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadBinanceImpl.class]
- 2025-05-14 11:07:14.259 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadEnergy.class]
- 2025-05-14 11:07:14.259 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadHuoBiImpl.class]
- 2025-05-14 11:07:14.259 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadMetal.class]
- 2025-05-14 11:07:14.259 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadMt5.class]
- 2025-05-14 11:07:14.260 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketCoinOver.class]
- 2025-05-14 11:07:14.261 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketNotice.class]
- 2025-05-14 11:07:14.261 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketServers.class]
- 2025-05-14 11:07:14.261 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketSubCoins.class]
- 2025-05-14 11:07:14.269 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\ISysStatisticsService.class]
- 2025-05-14 11:07:14.271 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysConfigServiceImpl.class]
- 2025-05-14 11:07:14.272 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDeptServiceImpl.class]
- 2025-05-14 11:07:14.272 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDictDataServiceImpl.class]
- 2025-05-14 11:07:14.273 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDictTypeServiceImpl.class]
- 2025-05-14 11:07:14.273 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysLogininforServiceImpl.class]
- 2025-05-14 11:07:14.273 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysMenuServiceImpl.class]
- 2025-05-14 11:07:14.273 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysNoticeServiceImpl.class]
- 2025-05-14 11:07:14.274 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysOperLogServiceImpl.class]
- 2025-05-14 11:07:14.274 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysPostServiceImpl.class]
- 2025-05-14 11:07:14.274 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysRoleServiceImpl.class]
- 2025-05-14 11:07:14.274 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysStatisticsServiceImpl.class]
- 2025-05-14 11:07:14.274 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysUserOnlineServiceImpl.class]
- 2025-05-14 11:07:14.275 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysUserServiceImpl.class]
- 2025-05-14 11:07:14.275 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\telegrambot\MyTelegramBot.class]
- 2025-05-14 11:07:14.276 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\telegrambot\TelegramBotConfig.class]
- 2025-05-14 11:07:14.280 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\controller\SysJobController.class]
- 2025-05-14 11:07:14.280 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\controller\SysJobLogController.class]
- 2025-05-14 11:07:14.281 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\service\impl\SysJobLogServiceImpl.class]
- 2025-05-14 11:07:14.281 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\service\impl\SysJobServiceImpl.class]
- 2025-05-14 11:07:14.282 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\CollectionTask.class]
- 2025-05-14 11:07:14.282 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\ContractOrderTask.class]
- 2025-05-14 11:07:14.282 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\ContractPositionTask.class]
- 2025-05-14 11:07:14.282 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\CurrencyOrderTask.class]
- 2025-05-14 11:07:14.282 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\DefiRateTask.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\MineFinancialTask.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\MingOrderTask.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\OwnCoinTask.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\QueryAddreUsdt.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\QueryUsdtAllowed.class]
- 2025-05-14 11:07:14.283 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\SecondContractTask.class]
- 2025-05-14 11:07:14.284 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\TaskExecutePool.class]
- 2025-05-14 11:07:14.285 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\config\RuoYiConfig.class]
- 2025-05-14 11:07:14.290 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\core\redis\RedisCache.class]
- 2025-05-14 11:07:14.294 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\eth\EthUtils.class]
- 2025-05-14 11:07:14.298 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\trc\Trc20Service.class]
- 2025-05-14 11:07:14.299 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\OrderUtils.class]
- 2025-05-14 11:07:14.299 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\RedisUtil.class]
- 2025-05-14 11:07:14.300 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\SpringContextUtil.class]
- 2025-05-14 11:07:14.303 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\spring\SpringUtils.class]
- 2025-05-14 11:07:14.304 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\config\GenConfig.class]
- 2025-05-14 11:07:14.304 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\controller\GenController.class]
- 2025-05-14 11:07:14.305 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\service\GenTableColumnServiceImpl.class]
- 2025-05-14 11:07:14.305 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\service\GenTableServiceImpl.class]
- 2025-05-14 11:07:14.455 [DEBUG] [SimpleAsyncTaskExecutor-1] [org.springframework.data.redis.core.RedisConnectionUtils.doCloseConnection:389] - Closing Redis Connection.
- 2025-05-14 11:07:14.456 [DEBUG] [SimpleAsyncTaskExecutor-1] [org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection:143] - Fetching Redis Connection from RedisConnectionFactory
- 2025-05-14 11:07:14.456 [ERROR] [SimpleAsyncTaskExecutor-1] [org.springframework.data.redis.stream.DefaultStreamMessageListenerContainer$LoggingErrorHandler.handleError:388] - Unexpected error occurred in scheduled task.
- java.lang.IllegalStateException: JedisConnectionFactory was destroyed and cannot be used anymore
- at org.springframework.util.Assert.state(Assert.java:76)
- at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.assertInitialized(JedisConnectionFactory.java:970)
- at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:508)
- at org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193)
- at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144)
- at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105)
- at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209)
- at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189)
- at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:176)
- at org.springframework.data.redis.stream.DefaultStreamMessageListenerContainer.lambda$getReadFunction$4(DefaultStreamMessageListenerContainer.java:258)
- at org.springframework.data.redis.stream.StreamPollTask.readRecords(StreamPollTask.java:166)
- at org.springframework.data.redis.stream.StreamPollTask.doLoop(StreamPollTask.java:147)
- at org.springframework.data.redis.stream.StreamPollTask.run(StreamPollTask.java:132)
- at java.base/java.lang.Thread.run(Thread.java:1623)
- 2025-05-14 11:07:14.585 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/web/OpenApiControllerWebMvc.class]
- 2025-05-14 11:07:14.588 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasVendorExtensionsMapperImpl.class]
- 2025-05-14 11:07:14.589 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/StyleEnumMapperImpl.class]
- 2025-05-14 11:07:14.590 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/SecuritySchemeMapperImpl.class]
- 2025-05-14 11:07:14.590 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasSecurityMapperImpl.class]
- 2025-05-14 11:07:14.590 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/SchemaMapperImpl.class]
- 2025-05-14 11:07:14.591 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/ExamplesMapperImpl.class]
- 2025-05-14 11:07:14.591 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/ServiceModelToOpenApiMapperImpl.class]
- 2025-05-14 11:07:14.591 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasLicenceMapper.class]
- 2025-05-14 11:07:14.599 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingReferenceScanner.class]
- 2025-05-14 11:07:14.599 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDocumentationScanner.class]
- 2025-05-14 11:07:14.599 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionReader.class]
- 2025-05-14 11:07:14.600 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingReader.class]
- 2025-05-14 11:07:14.600 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiModelSpecificationReader.class]
- 2025-05-14 11:07:14.600 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/CachingOperationReader.class]
- 2025-05-14 11:07:14.601 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/MediaTypeReader.class]
- 2025-05-14 11:07:14.601 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingScanner.class]
- 2025-05-14 11:07:14.601 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiModelReader.class]
- 2025-05-14 11:07:14.602 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionLookup.class]
- 2025-05-14 11:07:14.602 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationModelsProvider.class]
- 2025-05-14 11:07:14.602 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationDeprecatedReader.class]
- 2025-05-14 11:07:14.603 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ResponseMessagesReader.class]
- 2025-05-14 11:07:14.603 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterReader.class]
- 2025-05-14 11:07:14.604 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationTagsReader.class]
- 2025-05-14 11:07:14.604 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ApiOperationReader.class]
- 2025-05-14 11:07:14.604 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/DefaultOperationReader.class]
- 2025-05-14 11:07:14.605 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterRequestConditionReader.class]
- 2025-05-14 11:07:14.605 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterHeadersConditionReader.class]
- 2025-05-14 11:07:14.605 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ContentParameterAggregator.class]
- 2025-05-14 11:07:14.605 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationResponseClassReader.class]
- 2025-05-14 11:07:14.605 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/CachingOperationNameGenerator.class]
- 2025-05-14 11:07:14.606 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterMultiplesReader.class]
- 2025-05-14 11:07:14.606 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ModelAttributeParameterExpander.class]
- 2025-05-14 11:07:14.607 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterTypeReader.class]
- 2025-05-14 11:07:14.607 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterRequiredReader.class]
- 2025-05-14 11:07:14.608 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDataTypeReader.class]
- 2025-05-14 11:07:14.608 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDefaultReader.class]
- 2025-05-14 11:07:14.608 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterNameReader.class]
- 2025-05-14 11:07:14.609 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ExpandedParameterBuilder.class]
- 2025-05-14 11:07:14.610 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DefaultResponseTypeReader.class]
- 2025-05-14 11:07:14.612 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsBootstrapper.class]
- 2025-05-14 11:07:14.613 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsManager.class]
- 2025-05-14 11:07:14.613 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-webmvc/3.0.0/springfox-spring-webmvc-3.0.0.jar!/springfox/documentation/spring/web/plugins/WebMvcRequestHandlerProvider.class]
- 2025-05-14 11:07:14.615 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/QueryStringUriTemplateDecorator.class]
- 2025-05-14 11:07:14.615 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/PathMappingDecorator.class]
- 2025-05-14 11:07:14.615 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/PathSanitizer.class]
- 2025-05-14 11:07:14.615 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/OperationPathDecorator.class]
- 2025-05-14 11:07:14.629 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/JacksonJsonViewProvider.class]
- 2025-05-14 11:07:14.630 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/CachingModelDependencyProvider.class]
- 2025-05-14 11:07:14.630 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/TypeNameExtractor.class]
- 2025-05-14 11:07:14.630 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/PropertyDiscriminatorBasedInheritancePlugin.class]
- 2025-05-14 11:07:14.631 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/XmlModelPlugin.class]
- 2025-05-14 11:07:14.631 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/SchemaPluginsManager.class]
- 2025-05-14 11:07:14.631 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/JsonIgnorePropertiesModelPlugin.class]
- 2025-05-14 11:07:14.634 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/CachingModelPropertiesProvider.class]
- 2025-05-14 11:07:14.634 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/ObjectMapperBeanPropertyNamingStrategy.class]
- 2025-05-14 11:07:14.635 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/bean/AccessorsProvider.class]
- 2025-05-14 11:07:14.636 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/field/FieldProvider.class]
- 2025-05-14 11:07:14.637 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/XmlPropertyPlugin.class]
- 2025-05-14 11:07:14.637 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/OptimizedModelPropertiesProvider.class]
- 2025-05-14 11:07:14.638 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/FactoryMethodProvider.class]
- 2025-05-14 11:07:14.638 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/ModelSpecificationFactory.class]
- 2025-05-14 11:07:14.639 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/CachingModelProvider.class]
- 2025-05-14 11:07:14.639 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelDependencyProvider.class]
- 2025-05-14 11:07:14.640 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/JacksonEnumTypeDeterminer.class]
- 2025-05-14 11:07:14.640 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelProvider.class]
- 2025-05-14 11:07:14.640 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelSpecificationProvider.class]
- 2025-05-14 11:07:14.651 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/OpenApiSchemaPropertyBuilder.class]
- 2025-05-14 11:07:14.652 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelPropertyPropertyBuilder.class]
- 2025-05-14 11:07:14.652 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelTypeNameProvider.class]
- 2025-05-14 11:07:14.652 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelBuilder.class]
- 2025-05-14 11:07:14.653 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParameterReader.class]
- 2025-05-14 11:07:14.653 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/VendorExtensionsReader.class]
- 2025-05-14 11:07:14.653 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationResponseClassReader.class]
- 2025-05-14 11:07:14.654 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationModelsProvider.class]
- 2025-05-14 11:07:14.654 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiOperationAuthReader.class]
- 2025-05-14 11:07:14.654 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerMediaTypeReader.class]
- 2025-05-14 11:07:14.654 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationHttpMethodReader.class]
- 2025-05-14 11:07:14.654 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParametersReader.class]
- 2025-05-14 11:07:14.655 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationAuthReader.class]
- 2025-05-14 11:07:14.655 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationHiddenReader.class]
- 2025-05-14 11:07:14.655 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationSummaryReader.class]
- 2025-05-14 11:07:14.655 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiOperationTagsReader.class]
- 2025-05-14 11:07:14.655 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerResponseMessageReader.class]
- 2025-05-14 11:07:14.656 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationNicknameIntoUniqueIdReader.class]
- 2025-05-14 11:07:14.656 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationPositionReader.class]
- 2025-05-14 11:07:14.656 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiResponseReader.class]
- 2025-05-14 11:07:14.656 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationNotesReader.class]
- 2025-05-14 11:07:14.657 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationTagsReader.class]
- 2025-05-14 11:07:14.657 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/ApiParamParameterBuilder.class]
- 2025-05-14 11:07:14.657 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/SwaggerExpandedParameterBuilder.class]
- 2025-05-14 11:07:14.658 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/OpenApiParameterBuilder.class]
- 2025-05-14 11:07:14.659 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/SwaggerApiListingReader.class]
- 2025-05-14 11:07:14.660 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/InMemorySwaggerResourcesProvider.class]
- 2025-05-14 11:07:14.661 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/ApiResourceController.class]
- 2025-05-14 11:07:14.670 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ServiceModelToSwagger2MapperImpl.class]
- 2025-05-14 11:07:14.670 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/VendorExtensionsMapperImpl.class]
- 2025-05-14 11:07:14.671 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/PropertyMapperImpl.class]
- 2025-05-14 11:07:14.671 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/CompatibilityModelMapperImpl.class]
- 2025-05-14 11:07:14.672 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ParameterMapperImpl.class]
- 2025-05-14 11:07:14.673 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ModelMapperImpl.class]
- 2025-05-14 11:07:14.673 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/RequestParameterMapperImpl.class]
- 2025-05-14 11:07:14.673 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ModelSpecificationMapperImpl.class]
- 2025-05-14 11:07:14.673 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/LicenseMapperImpl.class]
- 2025-05-14 11:07:14.674 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/SecurityMapperImpl.class]
- 2025-05-14 11:07:14.676 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/web/Swagger2ControllerWebMvc.class]
- 2025-05-14 11:07:14.756 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.multipleStoresDetected:262] - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2025-05-14 11:07:14.756 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:132] - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2025-05-14 11:07:14.756 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
- 2025-05-14 11:07:14.756 [DEBUG] [restartedMain] [org.springframework.boot.autoconfigure.AutoConfigurationPackages.get:196] - @EnableAutoConfiguration was declared on a class in the package 'com.ruoyi'. Automatic @Repository and @Entity scanning is enabled.
- 2025-05-14 11:07:14.756 [DEBUG] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:145] - Scanning for Redis repositories in packages com.ruoyi.
- 2025-05-14 11:07:14.799 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:201] - Finished Spring Data repository scanning in 42 ms. Found 0 Redis repository interfaces.
- 2025-05-14 11:07:14.855 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0'
- 2025-05-14 11:07:14.856 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiActivityMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiOrderMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiRateMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\KlineSymbolMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\SettingMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TActivityRechargeMapper.class]
- 2025-05-14 11:07:14.872 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAgentActivityInfoMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppAddressInfoMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppAssetMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppMailMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppRechargeMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppUserDetailMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppUserMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppWalletRecordMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppuserLoginLogMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TBotKlineModelInfoMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TBotKlineModelMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCollectionOrderMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractCoinMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractLossMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractOrderMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractPositionMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCurrencyOrderMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCurrencySymbolMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TExchangeCoinRecordMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THelpCenterInfoMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THelpCenterMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THomeSetterMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TLoadOrderMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TLoadProductMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMarketsMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineFinancialMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineOrderDayMapper.class]
- 2025-05-14 11:07:14.873 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineUserMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingProductMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingProductUserMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftProductMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftSeriesMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNoticeMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOptionRulesMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinSubscribeOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondCoinConfigMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondContractOrderMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondPeriodConfigMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSpontaneousCoinMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSymbolManageMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSymbolsMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserBankMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserCoinMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserSymbolAddressMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TWithdrawMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysConfigMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDeptMapper.class]
- 2025-05-14 11:07:14.874 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDictDataMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDictTypeMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysLogininforMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysMenuMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysNoticeMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysOperLogMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysPostMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleDeptMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleMenuMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserPostMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserRoleMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\mapper\SysJobLogMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\mapper\SysJobMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\mapper\GenTableColumnMapper.class]
- 2025-05-14 11:07:14.875 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\mapper\GenTableMapper.class]
- 2025-05-14 11:07:14.876 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiActivityMapper' and 'com.ruoyi.bussiness.mapper.DefiActivityMapper' mapperInterface
- 2025-05-14 11:07:14.876 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiActivityMapper'.
- 2025-05-14 11:07:14.876 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiOrderMapper' and 'com.ruoyi.bussiness.mapper.DefiOrderMapper' mapperInterface
- 2025-05-14 11:07:14.876 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiOrderMapper'.
- 2025-05-14 11:07:14.876 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiRateMapper' and 'com.ruoyi.bussiness.mapper.DefiRateMapper' mapperInterface
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiRateMapper'.
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'klineSymbolMapper' and 'com.ruoyi.bussiness.mapper.KlineSymbolMapper' mapperInterface
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'klineSymbolMapper'.
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'settingMapper' and 'com.ruoyi.bussiness.mapper.SettingMapper' mapperInterface
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'settingMapper'.
- 2025-05-14 11:07:14.877 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TActivityRechargeMapper' and 'com.ruoyi.bussiness.mapper.TActivityRechargeMapper' mapperInterface
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TActivityRechargeMapper'.
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAgentActivityInfoMapper' and 'com.ruoyi.bussiness.mapper.TAgentActivityInfoMapper' mapperInterface
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAgentActivityInfoMapper'.
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppAddressInfoMapper' and 'com.ruoyi.bussiness.mapper.TAppAddressInfoMapper' mapperInterface
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppAddressInfoMapper'.
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppAssetMapper' and 'com.ruoyi.bussiness.mapper.TAppAssetMapper' mapperInterface
- 2025-05-14 11:07:14.878 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppAssetMapper'.
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppMailMapper' and 'com.ruoyi.bussiness.mapper.TAppMailMapper' mapperInterface
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppMailMapper'.
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppRechargeMapper' and 'com.ruoyi.bussiness.mapper.TAppRechargeMapper' mapperInterface
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppRechargeMapper'.
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppUserDetailMapper' and 'com.ruoyi.bussiness.mapper.TAppUserDetailMapper' mapperInterface
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppUserDetailMapper'.
- 2025-05-14 11:07:14.879 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppUserMapper' and 'com.ruoyi.bussiness.mapper.TAppUserMapper' mapperInterface
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppUserMapper'.
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppWalletRecordMapper' and 'com.ruoyi.bussiness.mapper.TAppWalletRecordMapper' mapperInterface
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppWalletRecordMapper'.
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppuserLoginLogMapper' and 'com.ruoyi.bussiness.mapper.TAppuserLoginLogMapper' mapperInterface
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppuserLoginLogMapper'.
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TBotKlineModelInfoMapper' and 'com.ruoyi.bussiness.mapper.TBotKlineModelInfoMapper' mapperInterface
- 2025-05-14 11:07:14.880 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TBotKlineModelInfoMapper'.
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TBotKlineModelMapper' and 'com.ruoyi.bussiness.mapper.TBotKlineModelMapper' mapperInterface
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TBotKlineModelMapper'.
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCollectionOrderMapper' and 'com.ruoyi.bussiness.mapper.TCollectionOrderMapper' mapperInterface
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCollectionOrderMapper'.
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractCoinMapper' and 'com.ruoyi.bussiness.mapper.TContractCoinMapper' mapperInterface
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractCoinMapper'.
- 2025-05-14 11:07:14.881 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractLossMapper' and 'com.ruoyi.bussiness.mapper.TContractLossMapper' mapperInterface
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractLossMapper'.
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractOrderMapper' and 'com.ruoyi.bussiness.mapper.TContractOrderMapper' mapperInterface
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractOrderMapper'.
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractPositionMapper' and 'com.ruoyi.bussiness.mapper.TContractPositionMapper' mapperInterface
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractPositionMapper'.
- 2025-05-14 11:07:14.882 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCurrencyOrderMapper' and 'com.ruoyi.bussiness.mapper.TCurrencyOrderMapper' mapperInterface
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCurrencyOrderMapper'.
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCurrencySymbolMapper' and 'com.ruoyi.bussiness.mapper.TCurrencySymbolMapper' mapperInterface
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCurrencySymbolMapper'.
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TExchangeCoinRecordMapper' and 'com.ruoyi.bussiness.mapper.TExchangeCoinRecordMapper' mapperInterface
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TExchangeCoinRecordMapper'.
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THelpCenterInfoMapper' and 'com.ruoyi.bussiness.mapper.THelpCenterInfoMapper' mapperInterface
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THelpCenterInfoMapper'.
- 2025-05-14 11:07:14.883 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THelpCenterMapper' and 'com.ruoyi.bussiness.mapper.THelpCenterMapper' mapperInterface
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THelpCenterMapper'.
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THomeSetterMapper' and 'com.ruoyi.bussiness.mapper.THomeSetterMapper' mapperInterface
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THomeSetterMapper'.
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TLoadOrderMapper' and 'com.ruoyi.bussiness.mapper.TLoadOrderMapper' mapperInterface
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TLoadOrderMapper'.
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TLoadProductMapper' and 'com.ruoyi.bussiness.mapper.TLoadProductMapper' mapperInterface
- 2025-05-14 11:07:14.884 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TLoadProductMapper'.
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMarketsMapper' and 'com.ruoyi.bussiness.mapper.TMarketsMapper' mapperInterface
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMarketsMapper'.
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineFinancialMapper' and 'com.ruoyi.bussiness.mapper.TMineFinancialMapper' mapperInterface
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineFinancialMapper'.
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineOrderDayMapper' and 'com.ruoyi.bussiness.mapper.TMineOrderDayMapper' mapperInterface
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineOrderDayMapper'.
- 2025-05-14 11:07:14.885 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineOrderMapper' and 'com.ruoyi.bussiness.mapper.TMineOrderMapper' mapperInterface
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineOrderMapper'.
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineUserMapper' and 'com.ruoyi.bussiness.mapper.TMineUserMapper' mapperInterface
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineUserMapper'.
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingOrderMapper' and 'com.ruoyi.bussiness.mapper.TMingOrderMapper' mapperInterface
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingOrderMapper'.
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingProductMapper' and 'com.ruoyi.bussiness.mapper.TMingProductMapper' mapperInterface
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingProductMapper'.
- 2025-05-14 11:07:14.886 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingProductUserMapper' and 'com.ruoyi.bussiness.mapper.TMingProductUserMapper' mapperInterface
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingProductUserMapper'.
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftOrderMapper' and 'com.ruoyi.bussiness.mapper.TNftOrderMapper' mapperInterface
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftOrderMapper'.
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftProductMapper' and 'com.ruoyi.bussiness.mapper.TNftProductMapper' mapperInterface
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftProductMapper'.
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftSeriesMapper' and 'com.ruoyi.bussiness.mapper.TNftSeriesMapper' mapperInterface
- 2025-05-14 11:07:14.887 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftSeriesMapper'.
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNoticeMapper' and 'com.ruoyi.bussiness.mapper.TNoticeMapper' mapperInterface
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNoticeMapper'.
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOptionRulesMapper' and 'com.ruoyi.bussiness.mapper.TOptionRulesMapper' mapperInterface
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOptionRulesMapper'.
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinMapper' mapperInterface
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinMapper'.
- 2025-05-14 11:07:14.888 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinOrderMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinOrderMapper' mapperInterface
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinOrderMapper'.
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinSubscribeOrderMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinSubscribeOrderMapper' mapperInterface
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinSubscribeOrderMapper'.
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondCoinConfigMapper' and 'com.ruoyi.bussiness.mapper.TSecondCoinConfigMapper' mapperInterface
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondCoinConfigMapper'.
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondContractOrderMapper' and 'com.ruoyi.bussiness.mapper.TSecondContractOrderMapper' mapperInterface
- 2025-05-14 11:07:14.889 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondContractOrderMapper'.
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondPeriodConfigMapper' and 'com.ruoyi.bussiness.mapper.TSecondPeriodConfigMapper' mapperInterface
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondPeriodConfigMapper'.
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSpontaneousCoinMapper' and 'com.ruoyi.bussiness.mapper.TSpontaneousCoinMapper' mapperInterface
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSpontaneousCoinMapper'.
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSymbolManageMapper' and 'com.ruoyi.bussiness.mapper.TSymbolManageMapper' mapperInterface
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSymbolManageMapper'.
- 2025-05-14 11:07:14.890 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSymbolsMapper' and 'com.ruoyi.bussiness.mapper.TSymbolsMapper' mapperInterface
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSymbolsMapper'.
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserBankMapper' and 'com.ruoyi.bussiness.mapper.TUserBankMapper' mapperInterface
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserBankMapper'.
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserCoinMapper' and 'com.ruoyi.bussiness.mapper.TUserCoinMapper' mapperInterface
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserCoinMapper'.
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserSymbolAddressMapper' and 'com.ruoyi.bussiness.mapper.TUserSymbolAddressMapper' mapperInterface
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserSymbolAddressMapper'.
- 2025-05-14 11:07:14.891 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TWithdrawMapper' and 'com.ruoyi.bussiness.mapper.TWithdrawMapper' mapperInterface
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TWithdrawMapper'.
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.ruoyi.system.mapper.SysConfigMapper' mapperInterface
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDeptMapper' and 'com.ruoyi.system.mapper.SysDeptMapper' mapperInterface
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDeptMapper'.
- 2025-05-14 11:07:14.892 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDictDataMapper' and 'com.ruoyi.system.mapper.SysDictDataMapper' mapperInterface
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDictDataMapper'.
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDictTypeMapper' and 'com.ruoyi.system.mapper.SysDictTypeMapper' mapperInterface
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDictTypeMapper'.
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysLogininforMapper' and 'com.ruoyi.system.mapper.SysLogininforMapper' mapperInterface
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysLogininforMapper'.
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysMenuMapper' and 'com.ruoyi.system.mapper.SysMenuMapper' mapperInterface
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysMenuMapper'.
- 2025-05-14 11:07:14.893 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysNoticeMapper' and 'com.ruoyi.system.mapper.SysNoticeMapper' mapperInterface
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysNoticeMapper'.
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysOperLogMapper' and 'com.ruoyi.system.mapper.SysOperLogMapper' mapperInterface
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysOperLogMapper'.
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysPostMapper' and 'com.ruoyi.system.mapper.SysPostMapper' mapperInterface
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysPostMapper'.
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleDeptMapper' and 'com.ruoyi.system.mapper.SysRoleDeptMapper' mapperInterface
- 2025-05-14 11:07:14.894 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleDeptMapper'.
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.ruoyi.system.mapper.SysRoleMapper' mapperInterface
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleMenuMapper' and 'com.ruoyi.system.mapper.SysRoleMenuMapper' mapperInterface
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMenuMapper'.
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserMapper' and 'com.ruoyi.system.mapper.SysUserMapper' mapperInterface
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserMapper'.
- 2025-05-14 11:07:14.895 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserPostMapper' and 'com.ruoyi.system.mapper.SysUserPostMapper' mapperInterface
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserPostMapper'.
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserRoleMapper' and 'com.ruoyi.system.mapper.SysUserRoleMapper' mapperInterface
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserRoleMapper'.
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysJobLogMapper' and 'com.ruoyi.quartz.mapper.SysJobLogMapper' mapperInterface
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysJobLogMapper'.
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysJobMapper' and 'com.ruoyi.quartz.mapper.SysJobMapper' mapperInterface
- 2025-05-14 11:07:14.896 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysJobMapper'.
- 2025-05-14 11:07:14.897 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'genTableColumnMapper' and 'com.ruoyi.generator.mapper.GenTableColumnMapper' mapperInterface
- 2025-05-14 11:07:14.897 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'genTableColumnMapper'.
- 2025-05-14 11:07:14.897 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'genTableMapper' and 'com.ruoyi.generator.mapper.GenTableMapper' mapperInterface
- 2025-05-14 11:07:14.897 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'genTableMapper'.
- 2025-05-14 11:07:14.920 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
- 2025-05-14 11:07:14.932 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
- 2025-05-14 11:07:14.932 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'springUtils'
- 2025-05-14 11:07:14.932 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
- 2025-05-14 11:07:14.932 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'conversionServicePostProcessor'
- 2025-05-14 11:07:14.933 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
- 2025-05-14 11:07:14.933 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
- 2025-05-14 11:07:14.935 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
- 2025-05-14 11:07:14.935 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
- 2025-05-14 11:07:14.935 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
- 2025-05-14 11:07:14.935 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
- 2025-05-14 11:07:14.935 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
- 2025-05-14 11:07:14.936 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
- 2025-05-14 11:07:14.937 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAsyncAnnotationProcessor'
- 2025-05-14 11:07:14.937 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.ProxyAsyncConfiguration'
- 2025-05-14 11:07:14.938 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalScheduledAnnotationProcessor'
- 2025-05-14 11:07:14.938 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.SchedulingConfiguration'
- 2025-05-14 11:07:14.939 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'methodValidationPostProcessor'
- 2025-05-14 11:07:14.947 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
- 2025-05-14 11:07:14.948 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
- 2025-05-14 11:07:14.950 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
- 2025-05-14 11:07:14.950 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
- 2025-05-14 11:07:14.951 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
- 2025-05-14 11:07:14.951 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
- 2025-05-14 11:07:14.951 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
- 2025-05-14 11:07:14.951 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.cache.annotation.ProxyCachingConfiguration'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'metaDataSourceAdvisor'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'methodSecurityMetadataSource'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicDatasourceAnnotationAdvisor'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.952 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.955 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.DataScopeAspect.doBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.DataScope) throws java.lang.Throwable
- 2025-05-14 11:07:14.956 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public java.lang.Object com.ruoyi.framework.aspectj.DataSourceAspect.around(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
- 2025-05-14 11:07:14.958 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.boBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log)
- 2025-05-14 11:07:14.958 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.doAfterReturning(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log,java.lang.Object)
- 2025-05-14 11:07:14.958 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.doAfterThrowing(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log,java.lang.Exception)
- 2025-05-14 11:07:14.959 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.RateLimiterAspect.doBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.RateLimiter) throws java.lang.Throwable
- 2025-05-14 11:07:14.963 [DEBUG] [restartedMain] [org.springframework.core.LocalVariableTableParameterNameDiscoverer.inspectClass:105] - Cannot find '.class' file for class [class com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$361b52a7] - unable to determine constructor/method parameter names
- 2025-05-14 11:07:14.963 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties'
- 2025-05-14 11:07:14.964 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.964 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.964 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
- 2025-05-14 11:07:14.964 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.964 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.965 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.965 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.965 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.965 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.974 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:07:14.974 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.975 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.975 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.975 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:07:14.980 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' via constructor to bean named 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties'
- 2025-05-14 11:07:14.981 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$361b52a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:07:14.981 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:07:14.987 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dsProcessor'
- 2025-05-14 11:07:14.988 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dsProcessor' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@2efa3a69'
- 2025-05-14 11:07:14.988 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:07:14.990 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dynamicDatasourceAnnotationAdvisor' via factory method to bean named 'dsProcessor'
- 2025-05-14 11:07:14.990 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'objectPostProcessor'
- 2025-05-14 11:07:14.991 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration'
- 2025-05-14 11:07:14.992 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'objectPostProcessor' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@2efa3a69'
- 2025-05-14 11:07:14.994 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@6e4c3069' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:07:14.999 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:07:15.003 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'cacheOperationSource'
- 2025-05-14 11:07:15.007 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'cacheInterceptor'
- 2025-05-14 11:07:15.008 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'cacheInterceptor' via factory method to bean named 'cacheOperationSource'
- 2025-05-14 11:07:15.009 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.cache.config.internalCacheAdvisor' via factory method to bean named 'cacheOperationSource'
- 2025-05-14 11:07:15.009 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.cache.config.internalCacheAdvisor' via factory method to bean named 'cacheInterceptor'
- 2025-05-14 11:07:15.014 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'transactionAttributeSource'
- 2025-05-14 11:07:15.018 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'transactionInterceptor'
- 2025-05-14 11:07:15.018 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
- 2025-05-14 11:07:15.019 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
- 2025-05-14 11:07:15.019 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
- 2025-05-14 11:07:15.021 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'webMvcObjectMapperConfigurer'
- 2025-05-14 11:07:15.024 [DEBUG] [restartedMain] [org.springframework.ui.context.support.UiApplicationContextUtils.initThemeSource:85] - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@5bb07df5]
- 2025-05-14 11:07:15.024 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
- 2025-05-14 11:07:15.025 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
- 2025-05-14 11:07:15.028 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
- 2025-05-14 11:07:15.028 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
- 2025-05-14 11:07:15.030 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
- 2025-05-14 11:07:15.031 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
- 2025-05-14 11:07:15.032 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.041 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.044 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
- 2025-05-14 11:07:15.044 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.046 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
- 2025-05-14 11:07:15.046 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
- 2025-05-14 11:07:15.047 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
- 2025-05-14 11:07:15.047 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.052 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
- 2025-05-14 11:07:15.052 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
- 2025-05-14 11:07:15.053 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.056 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'errorPageCustomizer'
- 2025-05-14 11:07:15.056 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
- 2025-05-14 11:07:15.057 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:07:15.060 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dispatcherServletRegistration'
- 2025-05-14 11:07:15.060 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
- 2025-05-14 11:07:15.062 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dispatcherServlet'
- 2025-05-14 11:07:15.062 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
- 2025-05-14 11:07:15.063 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:07:15.069 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:07:15.091 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
- 2025-05-14 11:07:15.091 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:07:15.092 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'multipartConfigElement'
- 2025-05-14 11:07:15.093 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
- 2025-05-14 11:07:15.093 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
- 2025-05-14 11:07:15.096 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
- 2025-05-14 11:07:15.104 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
- 2025-05-14 11:07:15.131 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getArchiveFileDocumentRoot:81] - Code archive: C:\Users\QiniuKj\.m2\repository\org\springframework\boot\spring-boot\2.5.15\spring-boot-2.5.15.jar
- 2025-05-14 11:07:15.132 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getExplodedWarFileDocumentRoot:125] - Code archive: C:\Users\QiniuKj\.m2\repository\org\springframework\boot\spring-boot\2.5.15\spring-boot-2.5.15.jar
- 2025-05-14 11:07:15.132 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.logNoDocumentRoots:149] - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
- 2025-05-14 11:07:15.158 [INFO] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize:108] - Tomcat initialized with port(s): 8080 (http)
- 2025-05-14 11:07:15.158 [INFO] [restartedMain] [org.apache.coyote.http11.Http11NioProtocol.log:173] - Initializing ProtocolHandler ["http-nio-8080"]
- 2025-05-14 11:07:15.159 [INFO] [restartedMain] [org.apache.catalina.core.StandardService.log:173] - Starting service [Tomcat]
- 2025-05-14 11:07:15.159 [INFO] [restartedMain] [org.apache.catalina.core.StandardEngine.log:173] - Starting Servlet engine: [Apache Tomcat/9.0.75]
- 2025-05-14 11:07:15.221 [INFO] [restartedMain] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].log:173] - Initializing Spring embedded WebApplicationContext
- 2025-05-14 11:07:15.222 [DEBUG] [restartedMain] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext:284] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2025-05-14 11:07:15.222 [INFO] [restartedMain] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext:290] - Root WebApplicationContext: initialization completed in 1039 ms
- 2025-05-14 11:07:15.222 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'someFilterRegistration'
- 2025-05-14 11:07:15.223 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'filterConfig'
- 2025-05-14 11:07:15.224 [ERROR] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup:61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.BeanCreationException. Message: Error creating bean with name 'filterConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- 2025-05-14 11:07:15.225 [INFO] [restartedMain] [org.apache.catalina.core.StandardService.log:173] - Stopping service [Tomcat]
- 2025-05-14 11:07:15.227 [WARN] [restartedMain] [org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.refresh:591] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- 2025-05-14 11:07:15.235 [DEBUG] [restartedMain] [org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener.logAutoConfigurationReport:126] -
- ============================
- CONDITIONS EVALUATION REPORT
- ============================
- Positive matches:
- -----------------
- AopAutoConfiguration matched:
- - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
- BeanValidatorPluginsConfiguration matched:
- - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition)
- CacheAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) found bean 'cacheInterceptor'; @ConditionalOnMissingBean (names: cacheResolver types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- CacheAutoConfiguration#cacheManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.cache.CacheManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DataSourceInitializationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DataSourceTransactionManagerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition)
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DispatcherServletAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)
- - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)
- - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
- - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
- DruidDataSourceAutoConfigure matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.pool.DruidDataSource' (OnClassCondition)
- DruidDynamicDataSourceConfiguration matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure' (OnClassCondition)
- DynamicDataSourceAutoConfiguration matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.enabled=true) matched (OnPropertyCondition)
- DynamicDataSourceAutoConfiguration#dataSourceInitEvent matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.event.DataSourceInitEvent; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceAutoConfiguration#dsProcessor matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.processor.DsProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceAutoConfiguration#dynamicDatasourceAnnotationAdvisor matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.aop.enabled=true) matched (OnPropertyCondition)
- DynamicDataSourceAutoConfiguration#dynamicTransactionAdvisor matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.seata=false) matched (OnPropertyCondition)
- DynamicDataSourceCreatorAutoConfiguration#dataSourceCreator matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceCreatorAutoConfiguration.DruidDataSourceCreatorConfiguration matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.pool.DruidDataSource' (OnClassCondition)
- DynamicDataSourceCreatorAutoConfiguration.HikariDataSourceCreatorConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- ErrorMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- ErrorMvcAutoConfiguration#basicErrorController matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration#errorAttributes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
- - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
- - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
- - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
- FreeMarkerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'freemarker.template.Configuration', 'org.springframework.ui.freemarker.FreeMarkerConfigurationFactory' (OnClassCondition)
- FreeMarkerServletWebConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- FreeMarkerServletWebConfiguration#freeMarkerConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.freemarker.FreeMarkerConfig; SearchStrategy: all) did not find any beans (OnBeanCondition)
- FreeMarkerServletWebConfiguration#freeMarkerViewResolver matched:
- - @ConditionalOnProperty (spring.freemarker.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (names: freeMarkerViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.google.gson.Gson' (OnClassCondition)
- GsonAutoConfiguration#gson matched:
- - @ConditionalOnMissingBean (types: com.google.gson.Gson; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonAutoConfiguration#gsonBuilder matched:
- - @ConditionalOnMissingBean (types: com.google.gson.GsonBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonHttpMessageConvertersConfiguration matched:
- - @ConditionalOnClass found required class 'com.google.gson.Gson' (OnClassCondition)
- HttpEncodingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)
- HttpEncodingAutoConfiguration#characterEncodingFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- HttpMessageConvertersAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)
- HttpMessageConvertersAutoConfiguration#messageConverters matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JdbcTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- JdbcTemplateConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JedisConnectionConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.commons.pool2.impl.GenericObjectPool', 'org.springframework.data.redis.connection.jedis.JedisConnection', 'redis.clients.jedis.Jedis' (OnClassCondition)
- - @ConditionalOnProperty (spring.redis.client-type=jedis) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
- JmxAutoConfiguration#mbeanExporter matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration#mbeanServer matched:
- - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration#objectNamingStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)
- LifecycleAutoConfiguration#defaultLifecycleProcessor matched:
- - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration matched:
- - Initialized Restarter Condition available and initialized (OnInitializedRestarterCondition)
- LocalDevToolsAutoConfiguration.LiveReloadConfiguration matched:
- - @ConditionalOnProperty (spring.devtools.livereload.enabled) matched (OnPropertyCondition)
- LocalDevToolsAutoConfiguration.LiveReloadConfiguration#liveReloadServer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.livereload.LiveReloadServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration matched:
- - @ConditionalOnProperty (spring.devtools.restart.enabled) matched (OnPropertyCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#classPathFileSystemWatcher matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.classpath.ClassPathFileSystemWatcher; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#classPathRestartStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.classpath.ClassPathRestartStrategy; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#conditionEvaluationDeltaLoggingListener matched:
- - @ConditionalOnProperty (spring.devtools.restart.log-condition-evaluation-delta) matched (OnPropertyCondition)
- MultipartAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
- MultipartAutoConfiguration#multipartConfigElement matched:
- - @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MultipartAutoConfiguration#multipartResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- MybatisLanguageDriverAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition)
- MybatisPlusAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- MybatisPlusAutoConfiguration#sqlSessionFactory matched:
- - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisPlusAutoConfiguration#sqlSessionTemplate matched:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisPlusLanguageDriverAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition)
- NamedParameterJdbcTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- NettyAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.netty.util.NettyRuntime' (OnClassCondition)
- OpenApiAutoConfiguration matched:
- - @ConditionalOnProperty (springfox.documentation.enabled=true) matched (OnPropertyCondition)
- OpenApiControllerWebMvc matched:
- - found 'session' scope (OnWebApplicationCondition)
- OpenApiWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- PageHelperAutoConfiguration matched:
- - @ConditionalOnBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) found bean 'sqlSessionFactory' (OnBeanCondition)
- PersistenceExceptionTranslationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
- PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched:
- - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
- PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
- QuartzAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.quartz.Scheduler', 'org.springframework.scheduling.quartz.SchedulerFactoryBean', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
- QuartzAutoConfiguration#quartzScheduler matched:
- - @ConditionalOnMissingBean (types: org.springframework.scheduling.quartz.SchedulerFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
- RedisAutoConfiguration#stringRedisTemplate matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found a single bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.core.StringRedisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisCacheConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
- - Cache org.springframework.boot.autoconfigure.cache.RedisCacheConfiguration automatic cache type (CacheCondition)
- - @ConditionalOnBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisRepositoriesAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
- - @ConditionalOnProperty (spring.data.redis.repositories.enabled=true) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.repository.support.RedisRepositoryFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RestTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition)
- RestTemplateAutoConfiguration#restTemplateBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RestTemplateAutoConfiguration#restTemplateBuilderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SecurityAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
- SecurityAutoConfiguration#authenticationEventPublisher matched:
- - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationEventPublisher; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SecurityFilterAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- SecurityFilterAutoConfiguration#securityFilterChainRegistration matched:
- - @ConditionalOnBean (names: springSecurityFilterChain; SearchStrategy: all) found bean 'springSecurityFilterChain' (OnBeanCondition)
- ServletWebServerFactoryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRequest' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
- - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)
- ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
- SpringApplicationAdminJmxAutoConfiguration matched:
- - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)
- SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration#pageableCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration#sortCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringfoxWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- SqlInitializationAutoConfiguration matched:
- - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Swagger2ControllerWebMvc matched:
- - found 'session' scope (OnWebApplicationCondition)
- Swagger2WebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- SwaggerUiWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (springfox.documentation.swagger-ui.enabled=true) matched (OnPropertyCondition)
- TaskExecutionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)
- TaskExecutionAutoConfiguration#taskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TaskSchedulingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
- TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TelegramBotConfig matched:
- - @ConditionalOnClass found required class 'org.telegram.telegrambots.meta.TelegramBotsApi' (OnClassCondition)
- TransactionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
- TransactionAutoConfiguration#platformTransactionManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TransactionAutoConfiguration.TransactionTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition)
- TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ValidationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition)
- - @ConditionalOnResource found location classpath:META-INF/services/javax.validation.spi.ValidationProvider (OnResourceCondition)
- ValidationAutoConfiguration#defaultValidator matched:
- - @ConditionalOnMissingBean (types: javax.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ValidationAutoConfiguration#methodValidationPostProcessor matched:
- - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration#formContentFilter matched:
- - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:
- - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:
- - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:
- - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcRequestHandlerProvider matched:
- - found 'session' scope (OnWebApplicationCondition)
- WebSecurityEnablerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (names: springSecurityFilterChain; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebSocketMessagingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
- - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Negative matches:
- -----------------
- ActiveMQAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
- AopAutoConfiguration.ClassProxyingConfiguration:
- Did not match:
- - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)
- ArtemisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)
- BatchAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)
- CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
- CaffeineCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)
- CassandraAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)
- CassandraRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- ClientHttpConnectorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- CodecsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- ContractConfig:
- Did not match:
- - @ConditionalOnProperty (contract.address) did not find property 'contract.address' (OnPropertyCondition)
- CouchbaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
- CouchbaseReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
- DevToolsDataSourceAutoConfiguration:
- Did not match:
- - DevTools DataSource Condition did not find a single DataSource bean (DevToolsDataSourceAutoConfiguration.DevToolsDataSourceCondition)
- Matched:
- - Devtools devtools enabled. (OnEnabledDevToolsCondition)
- DevToolsDataSourceAutoConfiguration.DatabaseShutdownExecutorEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
- - Ancestor org.springframework.boot.devtools.autoconfigure.DevToolsDataSourceAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- DevToolsR2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
- DruidConfig#removeDruidFilterRegistrationBean:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.statViewServlet.enabled=true) did not find property 'spring.datasource.druid.statViewServlet.enabled' (OnPropertyCondition)
- DruidConfig#slaveDataSource:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.slave.enabled=true) did not find property 'enabled' (OnPropertyCondition)
- DruidDataSourceAutoConfigure#dataSource:
- Did not match:
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) found beans of type 'javax.sql.DataSource' masterDataSource, dynamicDataSource (OnBeanCondition)
- DruidFilterConfiguration#commonsLogFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.commons-log.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#configFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.config.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#encodingConvertFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.encoding.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#log4j2Filter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.log4j2.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#log4jFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.log4j.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#slf4jLogFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.slf4j.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#statFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.stat.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#wallConfig:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#wallFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidSpringAopConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.aop-patterns) did not find property 'spring.datasource.druid.aop-patterns' (OnPropertyCondition)
- DruidStatViewServletConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.stat-view-servlet.enabled=true) did not find property 'spring.datasource.druid.stat-view-servlet.enabled' (OnPropertyCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- DruidWebStatFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.web-stat-filter.enabled=true) did not find property 'spring.datasource.druid.web-stat-filter.enabled' (OnPropertyCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- DynamicDataSourceAutoConfiguration#dataSource:
- Did not match:
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) found beans of type 'javax.sql.DataSource' masterDataSource, dynamicDataSource (OnBeanCondition)
- DynamicDataSourceCreatorAutoConfiguration.BeeCpDataSourceCreatorConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.beecp.BeeDataSource' (OnClassCondition)
- DynamicDataSourceCreatorAutoConfiguration.Dbcp2DataSourceCreatorConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
- EhCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' (OnClassCondition)
- ElasticsearchDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate' (OnClassCondition)
- ElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition)
- ElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestHighLevelClient' (OnClassCondition)
- EmbeddedLdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
- EmbeddedMongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
- ErrorWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
- FilterConfig#xssFilterRegistration:
- Did not match:
- - @ConditionalOnProperty (xss.enabled=true) did not find property 'xss.enabled' (OnPropertyCondition)
- FlywayAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
- FreeMarkerNonWebConfiguration:
- Did not match:
- - @ConditionalOnWebApplication found 'session' scope and did not find reactive web application classes (OnWebApplicationCondition)
- FreeMarkerReactiveWebConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- FreeMarkerServletWebConfiguration#resourceUrlEncodingFilter:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
- GenericCacheConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.Cache; SearchStrategy: all) did not find any beans of type org.springframework.cache.Cache (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
- GroovyTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
- GsonHttpMessageConvertersConfiguration.GsonHttpMessageConverterConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.JacksonJsonbUnavailable NoneNestedConditions 1 matched 1 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JsonbPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jsonb) did not find property 'spring.mvc.converters.preferred-json-mapper'; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JacksonAvailable @ConditionalOnBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; SearchStrategy: all) found bean 'mappingJackson2HttpMessageConverter'; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.GsonPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=gson) did not find property 'spring.mvc.converters.preferred-json-mapper' (GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition)
- H2ConsoleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition)
- HazelcastAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HazelcastCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HazelcastJpaDependencyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HibernateJpaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' (OnClassCondition)
- HttpHandlerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
- HypermediaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)
- InfinispanCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)
- InfluxDbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
- IntegrationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
- JCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
- JdbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)
- JerseyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
- JmsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.Message' (OnClassCondition)
- JndiConnectionFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
- JndiDataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
- JooqAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
- JpaRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
- JsonbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
- JsonbHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
- JtaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition)
- KafkaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
- LdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
- LdapRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
- LettuceConnectionConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.lettuce.core.RedisClient' (OnClassCondition)
- LiquibaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)
- MailSenderAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on MailSenderAutoConfiguration.MailSenderCondition.JndiNameProperty @ConditionalOnProperty (spring.mail.jndi-name) did not find property 'jndi-name'; NestedCondition on MailSenderAutoConfiguration.MailSenderCondition.HostProperty @ConditionalOnProperty (spring.mail.host) did not find property 'host' (MailSenderAutoConfiguration.MailSenderCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.mail.internet.MimeMessage', 'javax.activation.MimeType', 'org.springframework.mail.MailSender' (OnClassCondition)
- MailSenderValidatorAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition)
- MessageSourceAutoConfiguration:
- Did not match:
- - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
- MongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MongoDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MongoReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MustacheAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
- MybatisAutoConfiguration#sqlSessionFactory:
- Did not match:
- - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) found beans of type 'org.apache.ibatis.session.SqlSessionFactory' sqlSessionFactory (OnBeanCondition)
- MybatisAutoConfiguration#sqlSessionTemplate:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) found beans of type 'org.mybatis.spring.SqlSessionTemplate' sqlSessionTemplate (OnBeanCondition)
- MybatisAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) found beans of type 'org.mybatis.spring.mapper.MapperScannerConfigurer' com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0 (OnBeanCondition)
- MybatisLanguageDriverAutoConfiguration.FreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.LegacyVelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.velocity.Driver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.ThymeleafConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.VelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition)
- MybatisPlusAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) found beans of type 'org.mybatis.spring.mapper.MapperScannerConfigurer' com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0 (OnBeanCondition)
- MybatisPlusLanguageDriverAutoConfiguration.FreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.ThymeleafConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.VelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition)
- Neo4jAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- NoOpCacheConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) found beans of type 'org.springframework.cache.CacheManager' cacheManager (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
- OAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.client.registration.ClientRegistration' (OnClassCondition)
- OAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken' (OnClassCondition)
- OpenApiControllerWebFlux:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- OpenApiWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- ProjectInfoAutoConfiguration#buildProperties:
- Did not match:
- - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
- ProjectInfoAutoConfiguration#gitProperties:
- Did not match:
- - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
- QuartzAutoConfiguration.JdbcStoreTypeConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.quartz.job-store-type=jdbc) did not find property 'job-store-type' (OnPropertyCondition)
- R2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- R2dbcDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)
- R2dbcInitializationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition)
- R2dbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- R2dbcTransactionManagerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)
- RSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RSocketRequesterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RSocketSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)
- RSocketServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)
- RSocketStrategiesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RabbitAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)
- ReactiveElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient' (OnClassCondition)
- ReactiveElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.client.HttpClient' (OnClassCondition)
- ReactiveOAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- ReactiveOAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- ReactiveSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- ReactiveUserDetailsServiceAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition.ReactiveWebApplicationCondition did not find reactive web application classes; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition.RSocketSecurityEnabledCondition @ConditionalOnBean (types: org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler; SearchStrategy: all) did not find any beans of type org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler (ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
- ReactiveWebServerFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- RedisAutoConfiguration#redisTemplate:
- Did not match:
- - @ConditionalOnMissingBean (names: redisTemplate; SearchStrategy: all) found beans named redisTemplate (OnBeanCondition)
- RedisReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- RemoteDevToolsAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.devtools.remote.secret) did not find property 'secret' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Filter', 'org.springframework.http.server.ServerHttpRequest' (OnClassCondition)
- RepositoryRestMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
- SaOAuth2BeanInject:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition)
- SaOAuth2BeanRegister:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition)
- SaSsoBeanInject:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition)
- SaSsoBeanRegister:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition)
- Saml2RelyingPartyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)
- SecurityDataConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.data.repository.query.SecurityEvaluationContextExtension' (OnClassCondition)
- SendGridAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
- ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)
- ServletWebServerFactoryConfiguration.EmbeddedJetty:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
- ServletWebServerFactoryConfiguration.EmbeddedUndertow:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
- SessionAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
- SimpleCacheConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) found beans of type 'org.springframework.cache.CacheManager' cacheManager (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
- SolrAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition)
- SpringBootWebSecurityConfiguration:
- Did not match:
- - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter,org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) found beans of type 'org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter' securityConfig; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass found required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
- SpringDataRestConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.core.config.RepositoryRestConfiguration' (OnClassCondition)
- SpringfoxWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- Swagger2ControllerWebFlux:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- Swagger2WebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- SwaggerUiWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- TaskExecutionAutoConfiguration#applicationTaskExecutor:
- Did not match:
- - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) found beans of type 'java.util.concurrent.Executor' threadPoolTaskExecutor, scheduledExecutorService, socketThread, myTaskAsyncPool (OnBeanCondition)
- TaskSchedulingAutoConfiguration#taskScheduler:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.scheduling.annotation.SchedulingConfigurer,org.springframework.scheduling.TaskScheduler,java.util.concurrent.ScheduledExecutorService; SearchStrategy: all) found beans of type 'java.util.concurrent.ScheduledExecutorService' scheduledExecutorService (OnBeanCondition)
- ThymeleafAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.thymeleaf.spring5.SpringTemplateEngine' (OnClassCondition)
- TransactionAutoConfiguration#transactionalOperator:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) found beans of type 'org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration' org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration (OnBeanCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration:
- Did not match:
- - Ancestor org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
- - Ancestor org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- UserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationManager,org.springframework.security.authentication.AuthenticationProvider,org.springframework.security.core.userdetails.UserDetailsService,org.springframework.security.oauth2.jwt.JwtDecoder,org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector,org.springframework.security.oauth2.client.registration.ClientRegistrationRepository; SearchStrategy: all) found beans of type 'org.springframework.security.authentication.AuthenticationManager' authenticationManagerBean and found beans of type 'org.springframework.security.core.userdetails.UserDetailsService' userDetailsServiceImpl (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
- WebClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- WebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
- WebFluxRequestHandlerProvider:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- WebMvcAutoConfiguration#hiddenHttpMethodFilter:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)
- WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
- WebServiceTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.client.core.WebServiceTemplate' (OnClassCondition)
- WebServicesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
- WebSocketMessagingAutoConfiguration.WebSocketMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.socket.config.annotation.DelegatingWebSocketMessageBrokerConfiguration,com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans of type org.springframework.web.socket.config.annotation.DelegatingWebSocketMessageBrokerConfiguration (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.messaging.simp.config.AbstractMessageBrokerConfiguration' (OnClassCondition)
- WebSocketReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration.Jetty10WebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.websocket.javax.server.internal.JavaxWebSocketServerContainer', 'org.eclipse.jetty.websocket.server.JettyWebSocketServerContainer' (OnClassCondition)
- WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition)
- WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
- XADataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' (OnClassCondition)
- Exclusions:
- -----------
- org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
- Unconditional classes:
- ----------------------
- org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
- cn.dev33.satoken.spring.SaBeanRegister
- cn.dev33.satoken.dao.SaTokenDaoRedisJackson
- org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
- org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration
- cn.dev33.satoken.spring.SaBeanInject
- org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration
- org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
- 2025-05-14 11:07:15.251 [ERROR] [restartedMain] [org.springframework.boot.SpringApplication.reportFailure:870] - Application run failed
- org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:163)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:780)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:453)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:343)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1359)
- at com.ruoyi.AdminApplication.main(AdminApplication.java:28)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
- at java.base/java.lang.reflect.Method.invoke(Method.java:578)
- at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49)
- Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:142)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:456)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:204)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:182)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:160)
- ... 11 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'filterConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:410)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:260)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:234)
- at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
- at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4936)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:871)
- at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:795)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:871)
- at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:249)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.StandardService.startInternal(StandardService.java:428)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:914)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
- ... 16 common frames omitted
- Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:180)
- at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126)
- at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239)
- at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210)
- at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:191)
- at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:936)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1332)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399)
- ... 65 common frames omitted
- 2025-05-14 11:07:49.823 [DEBUG] [Thread-4] [org.springframework.boot.devtools.restart.classloader.RestartClassLoader.<init>:85] - Created RestartClassLoader org.springframework.boot.devtools.restart.classloader.RestartClassLoader@2e79c1c7
- 2025-05-14 11:07:49.823 [DEBUG] [Thread-4] [org.springframework.boot.devtools.restart.Restarter.doStart:281] - Starting application com.ruoyi.AdminApplication with URLs [file:/D:/workspace/echo2.0/ruoyi-admin/target/classes/, file:/D:/workspace/echo2.0/ruoyi-framework/target/classes/, file:/D:/workspace/echo2.0/ruoyi-system/target/classes/, file:/D:/workspace/echo2.0/ruoyi-quartz/target/classes/, file:/D:/workspace/echo2.0/ruoyi-common/target/classes/, file:/C:/Users/QiniuKj/.m2/repository/com/alibaba/fastjson2/fastjson2/2.0.25/fastjson2-2.0.25.jar, file:/C:/Users/QiniuKj/.m2/repository/com/alibaba/fastjson/1.2.47/fastjson-1.2.47.jar, file:/D:/workspace/echo2.0/ruoyi-generator/target/classes/]
- 2025-05-14 11:08:04.464 [INFO] [restartedMain] [com.ruoyi.AdminApplication.logStarting:55] - Starting AdminApplication using Java 20.0.2 on qiniu with PID 25652 (started by QiniuKj in D:\workspace\echo2.0)
- 2025-05-14 11:08:04.464 [DEBUG] [restartedMain] [com.ruoyi.AdminApplication.logStarting:56] - Running with Spring Boot v2.5.15, Spring v5.3.27
- 2025-05-14 11:08:04.464 [INFO] [restartedMain] [com.ruoyi.AdminApplication.logStartupProfileInfo:680] - No active profile set, falling back to 1 default profile: "default"
- 2025-05-14 11:08:04.464 [DEBUG] [restartedMain] [org.springframework.boot.SpringApplication.load:713] - Loading source class com.ruoyi.AdminApplication
- 2025-05-14 11:08:04.467 [DEBUG] [restartedMain] [org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.prepareRefresh:629] - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@50693ccf
- 2025-05-14 11:08:04.467 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
- 2025-05-14 11:08:04.467 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
- 2025-05-14 11:08:04.487 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\DataScopeAspect.class]
- 2025-05-14 11:08:04.488 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\DataSourceAspect.class]
- 2025-05-14 11:08:04.489 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\LogAspect.class]
- 2025-05-14 11:08:04.489 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\aspectj\RateLimiterAspect.class]
- 2025-05-14 11:08:04.490 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ApplicationConfig.class]
- 2025-05-14 11:08:04.490 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\CaptchaConfig.class]
- 2025-05-14 11:08:04.491 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\DruidConfig.class]
- 2025-05-14 11:08:04.491 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\FilterConfig.class]
- 2025-05-14 11:08:04.492 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\MybatisPlusConfig.class]
- 2025-05-14 11:08:04.492 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\RedisConfig.class]
- 2025-05-14 11:08:04.492 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ResourcesConfig.class]
- 2025-05-14 11:08:04.492 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\SaTokenConfig.class]
- 2025-05-14 11:08:04.493 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\SecurityConfig.class]
- 2025-05-14 11:08:04.493 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ServerConfig.class]
- 2025-05-14 11:08:04.493 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\ThreadPoolConfig.class]
- 2025-05-14 11:08:04.493 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\WebSocketConfigOne.class]
- 2025-05-14 11:08:04.494 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\properties\DruidProperties.class]
- 2025-05-14 11:08:04.494 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\config\properties\PermitAllUrlProperties.class]
- 2025-05-14 11:08:04.495 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\interceptor\RepeatSubmitInterceptor.class]
- 2025-05-14 11:08:04.495 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\interceptor\impl\SameUrlDataInterceptor.class]
- 2025-05-14 11:08:04.495 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\manager\ShutdownManager.class]
- 2025-05-14 11:08:04.496 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\manager\blockcc\BlockccManager.class]
- 2025-05-14 11:08:04.496 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\filter\JwtAuthenticationTokenFilter.class]
- 2025-05-14 11:08:04.496 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\handle\AuthenticationEntryPointImpl.class]
- 2025-05-14 11:08:04.497 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\security\handle\LogoutSuccessHandlerImpl.class]
- 2025-05-14 11:08:04.498 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\exception\GlobalExceptionHandler.class]
- 2025-05-14 11:08:04.498 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\BlockccService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\PermissionService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysLoginService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysPasswordService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysPermissionService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\SysRegisterService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\TokenService.class]
- 2025-05-14 11:08:04.499 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-framework\target\classes\com\ruoyi\framework\web\service\UserDetailsServiceImpl.class]
- 2025-05-14 11:08:04.517 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayFactory.class]
- 2025-05-14 11:08:04.517 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayOutFactory.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayOutService.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\ThirdPayService.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiActivityServiceImpl.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiOrderServiceImpl.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\DefiRateServiceImpl.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\FileServiceImpl.class]
- 2025-05-14 11:08:04.518 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\ITUserCoinServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\KlineSymbolServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\SettingServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\SmsServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TActivityRechargeServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAgentActivityInfoServiceImpl.class]
- 2025-05-14 11:08:04.519 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppAddressInfoServiceImpl.class]
- 2025-05-14 11:08:04.520 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppAssetServiceImpl.class]
- 2025-05-14 11:08:04.520 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppMailServiceImpl.class]
- 2025-05-14 11:08:04.520 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppRechargeServiceImpl.class]
- 2025-05-14 11:08:04.520 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppUserDetailServiceImpl.class]
- 2025-05-14 11:08:04.520 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppUserServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppWalletRecordServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TAppuserLoginLogServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TBotKlineModelInfoServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TBotKlineModelServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCollectionOrderServiceImpl.class]
- 2025-05-14 11:08:04.521 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractCoinServiceImpl.class]
- 2025-05-14 11:08:04.522 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractLossServiceImpl.class]
- 2025-05-14 11:08:04.522 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractOrderServiceImpl.class]
- 2025-05-14 11:08:04.522 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TContractPositionServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCurrencyOrderServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TCurrencySymbolServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TExchangeCoinRecordServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THelpCenterInfoServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THelpCenterServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\THomeSetterServiceImpl.class]
- 2025-05-14 11:08:04.523 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TLoadOrderServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TLoadProductServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMarketsServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineFinancialServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineOrderDayServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineOrderServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMineUserServiceImpl.class]
- 2025-05-14 11:08:04.524 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingOrderServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingProductServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TMingProductUserServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftOrderServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftProductServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNftSeriesServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TNoticeServiceImpl.class]
- 2025-05-14 11:08:04.525 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOptionRulesServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOwnCoinOrderServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TOwnCoinServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondCoinConfigServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondContractOrderServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSecondPeriodConfigServiceImpl.class]
- 2025-05-14 11:08:04.526 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSpontaneousCoinServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSymbolManageServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TSymbolsServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TUserBankServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TUserSymbolAddressServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\TWithdrawServiceImpl.class]
- 2025-05-14 11:08:04.527 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\UncPayOutServiceImpl.class]
- 2025-05-14 11:08:04.528 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\service\impl\UncPayServiceImpl.class]
- 2025-05-14 11:08:04.528 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\config\SocketThreadPoolTaskConfig.class]
- 2025-05-14 11:08:04.529 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\config\WebSocketConfig.class]
- 2025-05-14 11:08:04.530 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\manager\WebSocketUserManager.class]
- 2025-05-14 11:08:04.531 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadBinanceImpl.class]
- 2025-05-14 11:08:04.531 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadEnergy.class]
- 2025-05-14 11:08:04.531 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadHuoBiImpl.class]
- 2025-05-14 11:08:04.531 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadMetal.class]
- 2025-05-14 11:08:04.532 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\service\impl\MarketThreadMt5.class]
- 2025-05-14 11:08:04.533 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketCoinOver.class]
- 2025-05-14 11:08:04.533 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketNotice.class]
- 2025-05-14 11:08:04.533 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketServers.class]
- 2025-05-14 11:08:04.533 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\socket\socketserver\WebSocketSubCoins.class]
- 2025-05-14 11:08:04.539 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:441] - Ignored because not a concrete top-level class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\ISysStatisticsService.class]
- 2025-05-14 11:08:04.541 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysConfigServiceImpl.class]
- 2025-05-14 11:08:04.541 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDeptServiceImpl.class]
- 2025-05-14 11:08:04.541 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDictDataServiceImpl.class]
- 2025-05-14 11:08:04.541 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysDictTypeServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysLogininforServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysMenuServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysNoticeServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysOperLogServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysPostServiceImpl.class]
- 2025-05-14 11:08:04.542 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysRoleServiceImpl.class]
- 2025-05-14 11:08:04.543 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysStatisticsServiceImpl.class]
- 2025-05-14 11:08:04.543 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysUserOnlineServiceImpl.class]
- 2025-05-14 11:08:04.543 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\service\impl\SysUserServiceImpl.class]
- 2025-05-14 11:08:04.543 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\telegrambot\MyTelegramBot.class]
- 2025-05-14 11:08:04.544 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\telegrambot\TelegramBotConfig.class]
- 2025-05-14 11:08:04.547 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\controller\SysJobController.class]
- 2025-05-14 11:08:04.548 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\controller\SysJobLogController.class]
- 2025-05-14 11:08:04.548 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\service\impl\SysJobLogServiceImpl.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\service\impl\SysJobServiceImpl.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\CollectionTask.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\ContractOrderTask.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\ContractPositionTask.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\CurrencyOrderTask.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\DefiRateTask.class]
- 2025-05-14 11:08:04.549 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\MineFinancialTask.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\MingOrderTask.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\OwnCoinTask.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\QueryAddreUsdt.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\QueryUsdtAllowed.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\SecondContractTask.class]
- 2025-05-14 11:08:04.550 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\task\TaskExecutePool.class]
- 2025-05-14 11:08:04.552 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\config\RuoYiConfig.class]
- 2025-05-14 11:08:04.555 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\core\redis\RedisCache.class]
- 2025-05-14 11:08:04.559 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\eth\EthUtils.class]
- 2025-05-14 11:08:04.562 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\trc\Trc20Service.class]
- 2025-05-14 11:08:04.563 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\OrderUtils.class]
- 2025-05-14 11:08:04.563 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\RedisUtil.class]
- 2025-05-14 11:08:04.563 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\SpringContextUtil.class]
- 2025-05-14 11:08:04.565 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-common\target\classes\com\ruoyi\common\utils\spring\SpringUtils.class]
- 2025-05-14 11:08:04.566 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\config\GenConfig.class]
- 2025-05-14 11:08:04.566 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\controller\GenController.class]
- 2025-05-14 11:08:04.567 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\service\GenTableColumnServiceImpl.class]
- 2025-05-14 11:08:04.567 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\service\GenTableServiceImpl.class]
- 2025-05-14 11:08:04.856 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/web/OpenApiControllerWebMvc.class]
- 2025-05-14 11:08:04.860 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasVendorExtensionsMapperImpl.class]
- 2025-05-14 11:08:04.861 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/StyleEnumMapperImpl.class]
- 2025-05-14 11:08:04.862 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/SecuritySchemeMapperImpl.class]
- 2025-05-14 11:08:04.862 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasSecurityMapperImpl.class]
- 2025-05-14 11:08:04.862 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/SchemaMapperImpl.class]
- 2025-05-14 11:08:04.862 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/ExamplesMapperImpl.class]
- 2025-05-14 11:08:04.863 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/ServiceModelToOpenApiMapperImpl.class]
- 2025-05-14 11:08:04.863 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-oas/3.0.0/springfox-oas-3.0.0.jar!/springfox/documentation/oas/mappers/OasLicenceMapper.class]
- 2025-05-14 11:08:04.873 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingReferenceScanner.class]
- 2025-05-14 11:08:04.873 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDocumentationScanner.class]
- 2025-05-14 11:08:04.873 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionReader.class]
- 2025-05-14 11:08:04.874 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingReader.class]
- 2025-05-14 11:08:04.874 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiModelSpecificationReader.class]
- 2025-05-14 11:08:04.875 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/CachingOperationReader.class]
- 2025-05-14 11:08:04.875 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/MediaTypeReader.class]
- 2025-05-14 11:08:04.876 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiListingScanner.class]
- 2025-05-14 11:08:04.876 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiModelReader.class]
- 2025-05-14 11:08:04.877 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionLookup.class]
- 2025-05-14 11:08:04.879 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationModelsProvider.class]
- 2025-05-14 11:08:04.879 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationDeprecatedReader.class]
- 2025-05-14 11:08:04.879 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ResponseMessagesReader.class]
- 2025-05-14 11:08:04.881 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterReader.class]
- 2025-05-14 11:08:04.881 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationTagsReader.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ApiOperationReader.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/DefaultOperationReader.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterRequestConditionReader.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterHeadersConditionReader.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/ContentParameterAggregator.class]
- 2025-05-14 11:08:04.883 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/OperationResponseClassReader.class]
- 2025-05-14 11:08:04.884 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/operation/CachingOperationNameGenerator.class]
- 2025-05-14 11:08:04.885 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterMultiplesReader.class]
- 2025-05-14 11:08:04.885 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ModelAttributeParameterExpander.class]
- 2025-05-14 11:08:04.885 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterTypeReader.class]
- 2025-05-14 11:08:04.886 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterRequiredReader.class]
- 2025-05-14 11:08:04.886 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDataTypeReader.class]
- 2025-05-14 11:08:04.887 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDefaultReader.class]
- 2025-05-14 11:08:04.887 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ParameterNameReader.class]
- 2025-05-14 11:08:04.887 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/readers/parameter/ExpandedParameterBuilder.class]
- 2025-05-14 11:08:04.888 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DefaultResponseTypeReader.class]
- 2025-05-14 11:08:04.891 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsBootstrapper.class]
- 2025-05-14 11:08:04.892 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsManager.class]
- 2025-05-14 11:08:04.893 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-webmvc/3.0.0/springfox-spring-webmvc-3.0.0.jar!/springfox/documentation/spring/web/plugins/WebMvcRequestHandlerProvider.class]
- 2025-05-14 11:08:04.895 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/QueryStringUriTemplateDecorator.class]
- 2025-05-14 11:08:04.896 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/PathMappingDecorator.class]
- 2025-05-14 11:08:04.896 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/PathSanitizer.class]
- 2025-05-14 11:08:04.897 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/springfox/documentation/spring/web/paths/OperationPathDecorator.class]
- 2025-05-14 11:08:04.916 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/JacksonJsonViewProvider.class]
- 2025-05-14 11:08:04.917 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/CachingModelDependencyProvider.class]
- 2025-05-14 11:08:04.917 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/TypeNameExtractor.class]
- 2025-05-14 11:08:04.917 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/PropertyDiscriminatorBasedInheritancePlugin.class]
- 2025-05-14 11:08:04.918 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/XmlModelPlugin.class]
- 2025-05-14 11:08:04.918 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/SchemaPluginsManager.class]
- 2025-05-14 11:08:04.918 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/plugins/JsonIgnorePropertiesModelPlugin.class]
- 2025-05-14 11:08:04.921 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/CachingModelPropertiesProvider.class]
- 2025-05-14 11:08:04.921 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/ObjectMapperBeanPropertyNamingStrategy.class]
- 2025-05-14 11:08:04.922 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/bean/AccessorsProvider.class]
- 2025-05-14 11:08:04.923 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/field/FieldProvider.class]
- 2025-05-14 11:08:04.923 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/XmlPropertyPlugin.class]
- 2025-05-14 11:08:04.924 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/OptimizedModelPropertiesProvider.class]
- 2025-05-14 11:08:04.924 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/FactoryMethodProvider.class]
- 2025-05-14 11:08:04.925 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/property/ModelSpecificationFactory.class]
- 2025-05-14 11:08:04.926 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/CachingModelProvider.class]
- 2025-05-14 11:08:04.926 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelDependencyProvider.class]
- 2025-05-14 11:08:04.927 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/JacksonEnumTypeDeterminer.class]
- 2025-05-14 11:08:04.927 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelProvider.class]
- 2025-05-14 11:08:04.928 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/springfox/documentation/schema/DefaultModelSpecificationProvider.class]
- 2025-05-14 11:08:04.940 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/OpenApiSchemaPropertyBuilder.class]
- 2025-05-14 11:08:04.940 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelPropertyPropertyBuilder.class]
- 2025-05-14 11:08:04.940 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelTypeNameProvider.class]
- 2025-05-14 11:08:04.940 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/schema/ApiModelBuilder.class]
- 2025-05-14 11:08:04.941 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParameterReader.class]
- 2025-05-14 11:08:04.942 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/VendorExtensionsReader.class]
- 2025-05-14 11:08:04.942 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationResponseClassReader.class]
- 2025-05-14 11:08:04.942 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationModelsProvider.class]
- 2025-05-14 11:08:04.942 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiOperationAuthReader.class]
- 2025-05-14 11:08:04.943 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerMediaTypeReader.class]
- 2025-05-14 11:08:04.943 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationHttpMethodReader.class]
- 2025-05-14 11:08:04.943 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParametersReader.class]
- 2025-05-14 11:08:04.943 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationAuthReader.class]
- 2025-05-14 11:08:04.943 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationHiddenReader.class]
- 2025-05-14 11:08:04.944 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationSummaryReader.class]
- 2025-05-14 11:08:04.944 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiOperationTagsReader.class]
- 2025-05-14 11:08:04.944 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerResponseMessageReader.class]
- 2025-05-14 11:08:04.944 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationNicknameIntoUniqueIdReader.class]
- 2025-05-14 11:08:04.944 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationPositionReader.class]
- 2025-05-14 11:08:04.945 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OpenApiResponseReader.class]
- 2025-05-14 11:08:04.945 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/OperationNotesReader.class]
- 2025-05-14 11:08:04.945 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationTagsReader.class]
- 2025-05-14 11:08:04.945 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/ApiParamParameterBuilder.class]
- 2025-05-14 11:08:04.946 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/SwaggerExpandedParameterBuilder.class]
- 2025-05-14 11:08:04.946 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/readers/parameter/OpenApiParameterBuilder.class]
- 2025-05-14 11:08:04.948 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/SwaggerApiListingReader.class]
- 2025-05-14 11:08:04.949 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/InMemorySwaggerResourcesProvider.class]
- 2025-05-14 11:08:04.949 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/springfox/documentation/swagger/web/ApiResourceController.class]
- 2025-05-14 11:08:04.959 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ServiceModelToSwagger2MapperImpl.class]
- 2025-05-14 11:08:04.959 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/VendorExtensionsMapperImpl.class]
- 2025-05-14 11:08:04.959 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/PropertyMapperImpl.class]
- 2025-05-14 11:08:04.960 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/CompatibilityModelMapperImpl.class]
- 2025-05-14 11:08:04.961 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ParameterMapperImpl.class]
- 2025-05-14 11:08:04.962 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ModelMapperImpl.class]
- 2025-05-14 11:08:04.962 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/RequestParameterMapperImpl.class]
- 2025-05-14 11:08:04.962 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/ModelSpecificationMapperImpl.class]
- 2025-05-14 11:08:04.962 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/LicenseMapperImpl.class]
- 2025-05-14 11:08:04.963 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/mappers/SecurityMapperImpl.class]
- 2025-05-14 11:08:04.965 [DEBUG] [restartedMain] [org.springframework.context.annotation.ClassPathBeanDefinitionScanner.scanCandidateComponents:435] - Identified candidate component class: URL [jar:file:/C:/Users/QiniuKj/.m2/repository/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/springfox/documentation/swagger2/web/Swagger2ControllerWebMvc.class]
- 2025-05-14 11:08:05.051 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.multipleStoresDetected:262] - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2025-05-14 11:08:05.051 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:132] - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2025-05-14 11:08:05.051 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
- 2025-05-14 11:08:05.051 [DEBUG] [restartedMain] [org.springframework.boot.autoconfigure.AutoConfigurationPackages.get:196] - @EnableAutoConfiguration was declared on a class in the package 'com.ruoyi'. Automatic @Repository and @Entity scanning is enabled.
- 2025-05-14 11:08:05.052 [DEBUG] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:145] - Scanning for Redis repositories in packages com.ruoyi.
- 2025-05-14 11:08:05.100 [INFO] [restartedMain] [org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn:201] - Finished Spring Data repository scanning in 48 ms. Found 0 Redis repository interfaces.
- 2025-05-14 11:08:05.161 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0'
- 2025-05-14 11:08:05.162 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiActivityMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiOrderMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\DefiRateMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\KlineSymbolMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\SettingMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TActivityRechargeMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAgentActivityInfoMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppAddressInfoMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppAssetMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppMailMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppRechargeMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppUserDetailMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppUserMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppWalletRecordMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TAppuserLoginLogMapper.class]
- 2025-05-14 11:08:05.178 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TBotKlineModelInfoMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TBotKlineModelMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCollectionOrderMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractCoinMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractLossMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractOrderMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TContractPositionMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCurrencyOrderMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TCurrencySymbolMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TExchangeCoinRecordMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THelpCenterInfoMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THelpCenterMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\THomeSetterMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TLoadOrderMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TLoadProductMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMarketsMapper.class]
- 2025-05-14 11:08:05.179 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineFinancialMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineOrderDayMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMineUserMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingProductMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TMingProductUserMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftProductMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNftSeriesMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TNoticeMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOptionRulesMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TOwnCoinSubscribeOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondCoinConfigMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondContractOrderMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSecondPeriodConfigMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSpontaneousCoinMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSymbolManageMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TSymbolsMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserBankMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserCoinMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TUserSymbolAddressMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\bussiness\mapper\TWithdrawMapper.class]
- 2025-05-14 11:08:05.180 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysConfigMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDeptMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDictDataMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysDictTypeMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysLogininforMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysMenuMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysNoticeMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysOperLogMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysPostMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleDeptMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysRoleMenuMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserPostMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysUserRoleMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\mapper\SysJobLogMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-quartz\target\classes\com\ruoyi\quartz\mapper\SysJobMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\mapper\GenTableColumnMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.scanCandidateComponents:435] - Identified candidate component class: file [D:\workspace\echo2.0\ruoyi-generator\target\classes\com\ruoyi\generator\mapper\GenTableMapper.class]
- 2025-05-14 11:08:05.181 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiActivityMapper' and 'com.ruoyi.bussiness.mapper.DefiActivityMapper' mapperInterface
- 2025-05-14 11:08:05.182 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiActivityMapper'.
- 2025-05-14 11:08:05.182 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiOrderMapper' and 'com.ruoyi.bussiness.mapper.DefiOrderMapper' mapperInterface
- 2025-05-14 11:08:05.182 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiOrderMapper'.
- 2025-05-14 11:08:05.182 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'defiRateMapper' and 'com.ruoyi.bussiness.mapper.DefiRateMapper' mapperInterface
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'defiRateMapper'.
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'klineSymbolMapper' and 'com.ruoyi.bussiness.mapper.KlineSymbolMapper' mapperInterface
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'klineSymbolMapper'.
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'settingMapper' and 'com.ruoyi.bussiness.mapper.SettingMapper' mapperInterface
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'settingMapper'.
- 2025-05-14 11:08:05.183 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TActivityRechargeMapper' and 'com.ruoyi.bussiness.mapper.TActivityRechargeMapper' mapperInterface
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TActivityRechargeMapper'.
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAgentActivityInfoMapper' and 'com.ruoyi.bussiness.mapper.TAgentActivityInfoMapper' mapperInterface
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAgentActivityInfoMapper'.
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppAddressInfoMapper' and 'com.ruoyi.bussiness.mapper.TAppAddressInfoMapper' mapperInterface
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppAddressInfoMapper'.
- 2025-05-14 11:08:05.184 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppAssetMapper' and 'com.ruoyi.bussiness.mapper.TAppAssetMapper' mapperInterface
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppAssetMapper'.
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppMailMapper' and 'com.ruoyi.bussiness.mapper.TAppMailMapper' mapperInterface
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppMailMapper'.
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppRechargeMapper' and 'com.ruoyi.bussiness.mapper.TAppRechargeMapper' mapperInterface
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppRechargeMapper'.
- 2025-05-14 11:08:05.185 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppUserDetailMapper' and 'com.ruoyi.bussiness.mapper.TAppUserDetailMapper' mapperInterface
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppUserDetailMapper'.
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppUserMapper' and 'com.ruoyi.bussiness.mapper.TAppUserMapper' mapperInterface
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppUserMapper'.
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppWalletRecordMapper' and 'com.ruoyi.bussiness.mapper.TAppWalletRecordMapper' mapperInterface
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppWalletRecordMapper'.
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TAppuserLoginLogMapper' and 'com.ruoyi.bussiness.mapper.TAppuserLoginLogMapper' mapperInterface
- 2025-05-14 11:08:05.186 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TAppuserLoginLogMapper'.
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TBotKlineModelInfoMapper' and 'com.ruoyi.bussiness.mapper.TBotKlineModelInfoMapper' mapperInterface
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TBotKlineModelInfoMapper'.
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TBotKlineModelMapper' and 'com.ruoyi.bussiness.mapper.TBotKlineModelMapper' mapperInterface
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TBotKlineModelMapper'.
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCollectionOrderMapper' and 'com.ruoyi.bussiness.mapper.TCollectionOrderMapper' mapperInterface
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCollectionOrderMapper'.
- 2025-05-14 11:08:05.187 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractCoinMapper' and 'com.ruoyi.bussiness.mapper.TContractCoinMapper' mapperInterface
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractCoinMapper'.
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractLossMapper' and 'com.ruoyi.bussiness.mapper.TContractLossMapper' mapperInterface
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractLossMapper'.
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractOrderMapper' and 'com.ruoyi.bussiness.mapper.TContractOrderMapper' mapperInterface
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractOrderMapper'.
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TContractPositionMapper' and 'com.ruoyi.bussiness.mapper.TContractPositionMapper' mapperInterface
- 2025-05-14 11:08:05.188 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TContractPositionMapper'.
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCurrencyOrderMapper' and 'com.ruoyi.bussiness.mapper.TCurrencyOrderMapper' mapperInterface
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCurrencyOrderMapper'.
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TCurrencySymbolMapper' and 'com.ruoyi.bussiness.mapper.TCurrencySymbolMapper' mapperInterface
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TCurrencySymbolMapper'.
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TExchangeCoinRecordMapper' and 'com.ruoyi.bussiness.mapper.TExchangeCoinRecordMapper' mapperInterface
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TExchangeCoinRecordMapper'.
- 2025-05-14 11:08:05.189 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THelpCenterInfoMapper' and 'com.ruoyi.bussiness.mapper.THelpCenterInfoMapper' mapperInterface
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THelpCenterInfoMapper'.
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THelpCenterMapper' and 'com.ruoyi.bussiness.mapper.THelpCenterMapper' mapperInterface
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THelpCenterMapper'.
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'THomeSetterMapper' and 'com.ruoyi.bussiness.mapper.THomeSetterMapper' mapperInterface
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'THomeSetterMapper'.
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TLoadOrderMapper' and 'com.ruoyi.bussiness.mapper.TLoadOrderMapper' mapperInterface
- 2025-05-14 11:08:05.190 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TLoadOrderMapper'.
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TLoadProductMapper' and 'com.ruoyi.bussiness.mapper.TLoadProductMapper' mapperInterface
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TLoadProductMapper'.
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMarketsMapper' and 'com.ruoyi.bussiness.mapper.TMarketsMapper' mapperInterface
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMarketsMapper'.
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineFinancialMapper' and 'com.ruoyi.bussiness.mapper.TMineFinancialMapper' mapperInterface
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineFinancialMapper'.
- 2025-05-14 11:08:05.191 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineOrderDayMapper' and 'com.ruoyi.bussiness.mapper.TMineOrderDayMapper' mapperInterface
- 2025-05-14 11:08:05.192 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineOrderDayMapper'.
- 2025-05-14 11:08:05.192 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineOrderMapper' and 'com.ruoyi.bussiness.mapper.TMineOrderMapper' mapperInterface
- 2025-05-14 11:08:05.192 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineOrderMapper'.
- 2025-05-14 11:08:05.193 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMineUserMapper' and 'com.ruoyi.bussiness.mapper.TMineUserMapper' mapperInterface
- 2025-05-14 11:08:05.193 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMineUserMapper'.
- 2025-05-14 11:08:05.193 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingOrderMapper' and 'com.ruoyi.bussiness.mapper.TMingOrderMapper' mapperInterface
- 2025-05-14 11:08:05.194 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingOrderMapper'.
- 2025-05-14 11:08:05.194 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingProductMapper' and 'com.ruoyi.bussiness.mapper.TMingProductMapper' mapperInterface
- 2025-05-14 11:08:05.194 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingProductMapper'.
- 2025-05-14 11:08:05.194 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TMingProductUserMapper' and 'com.ruoyi.bussiness.mapper.TMingProductUserMapper' mapperInterface
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TMingProductUserMapper'.
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftOrderMapper' and 'com.ruoyi.bussiness.mapper.TNftOrderMapper' mapperInterface
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftOrderMapper'.
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftProductMapper' and 'com.ruoyi.bussiness.mapper.TNftProductMapper' mapperInterface
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftProductMapper'.
- 2025-05-14 11:08:05.195 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNftSeriesMapper' and 'com.ruoyi.bussiness.mapper.TNftSeriesMapper' mapperInterface
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNftSeriesMapper'.
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TNoticeMapper' and 'com.ruoyi.bussiness.mapper.TNoticeMapper' mapperInterface
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TNoticeMapper'.
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOptionRulesMapper' and 'com.ruoyi.bussiness.mapper.TOptionRulesMapper' mapperInterface
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOptionRulesMapper'.
- 2025-05-14 11:08:05.196 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinMapper' mapperInterface
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinMapper'.
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinOrderMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinOrderMapper' mapperInterface
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinOrderMapper'.
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TOwnCoinSubscribeOrderMapper' and 'com.ruoyi.bussiness.mapper.TOwnCoinSubscribeOrderMapper' mapperInterface
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TOwnCoinSubscribeOrderMapper'.
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondCoinConfigMapper' and 'com.ruoyi.bussiness.mapper.TSecondCoinConfigMapper' mapperInterface
- 2025-05-14 11:08:05.197 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondCoinConfigMapper'.
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondContractOrderMapper' and 'com.ruoyi.bussiness.mapper.TSecondContractOrderMapper' mapperInterface
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondContractOrderMapper'.
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSecondPeriodConfigMapper' and 'com.ruoyi.bussiness.mapper.TSecondPeriodConfigMapper' mapperInterface
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSecondPeriodConfigMapper'.
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSpontaneousCoinMapper' and 'com.ruoyi.bussiness.mapper.TSpontaneousCoinMapper' mapperInterface
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSpontaneousCoinMapper'.
- 2025-05-14 11:08:05.198 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSymbolManageMapper' and 'com.ruoyi.bussiness.mapper.TSymbolManageMapper' mapperInterface
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSymbolManageMapper'.
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TSymbolsMapper' and 'com.ruoyi.bussiness.mapper.TSymbolsMapper' mapperInterface
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TSymbolsMapper'.
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserBankMapper' and 'com.ruoyi.bussiness.mapper.TUserBankMapper' mapperInterface
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserBankMapper'.
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserCoinMapper' and 'com.ruoyi.bussiness.mapper.TUserCoinMapper' mapperInterface
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserCoinMapper'.
- 2025-05-14 11:08:05.199 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TUserSymbolAddressMapper' and 'com.ruoyi.bussiness.mapper.TUserSymbolAddressMapper' mapperInterface
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TUserSymbolAddressMapper'.
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'TWithdrawMapper' and 'com.ruoyi.bussiness.mapper.TWithdrawMapper' mapperInterface
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'TWithdrawMapper'.
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.ruoyi.system.mapper.SysConfigMapper' mapperInterface
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2025-05-14 11:08:05.200 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDeptMapper' and 'com.ruoyi.system.mapper.SysDeptMapper' mapperInterface
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDeptMapper'.
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDictDataMapper' and 'com.ruoyi.system.mapper.SysDictDataMapper' mapperInterface
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDictDataMapper'.
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysDictTypeMapper' and 'com.ruoyi.system.mapper.SysDictTypeMapper' mapperInterface
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysDictTypeMapper'.
- 2025-05-14 11:08:05.201 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysLogininforMapper' and 'com.ruoyi.system.mapper.SysLogininforMapper' mapperInterface
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysLogininforMapper'.
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysMenuMapper' and 'com.ruoyi.system.mapper.SysMenuMapper' mapperInterface
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysMenuMapper'.
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysNoticeMapper' and 'com.ruoyi.system.mapper.SysNoticeMapper' mapperInterface
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysNoticeMapper'.
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysOperLogMapper' and 'com.ruoyi.system.mapper.SysOperLogMapper' mapperInterface
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysOperLogMapper'.
- 2025-05-14 11:08:05.202 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysPostMapper' and 'com.ruoyi.system.mapper.SysPostMapper' mapperInterface
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysPostMapper'.
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleDeptMapper' and 'com.ruoyi.system.mapper.SysRoleDeptMapper' mapperInterface
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleDeptMapper'.
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.ruoyi.system.mapper.SysRoleMapper' mapperInterface
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2025-05-14 11:08:05.203 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysRoleMenuMapper' and 'com.ruoyi.system.mapper.SysRoleMenuMapper' mapperInterface
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMenuMapper'.
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserMapper' and 'com.ruoyi.system.mapper.SysUserMapper' mapperInterface
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserMapper'.
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserPostMapper' and 'com.ruoyi.system.mapper.SysUserPostMapper' mapperInterface
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserPostMapper'.
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysUserRoleMapper' and 'com.ruoyi.system.mapper.SysUserRoleMapper' mapperInterface
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysUserRoleMapper'.
- 2025-05-14 11:08:05.204 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysJobLogMapper' and 'com.ruoyi.quartz.mapper.SysJobLogMapper' mapperInterface
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysJobLogMapper'.
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'sysJobMapper' and 'com.ruoyi.quartz.mapper.SysJobMapper' mapperInterface
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'sysJobMapper'.
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'genTableColumnMapper' and 'com.ruoyi.generator.mapper.GenTableColumnMapper' mapperInterface
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'genTableColumnMapper'.
- 2025-05-14 11:08:05.205 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Creating MapperFactoryBean with name 'genTableMapper' and 'com.ruoyi.generator.mapper.GenTableMapper' mapperInterface
- 2025-05-14 11:08:05.206 [DEBUG] [restartedMain] [org.mybatis.spring.mapper.ClassPathMapperScanner.debug:49] - Enabling autowire by type for MapperFactoryBean with name 'genTableMapper'.
- 2025-05-14 11:08:05.227 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
- 2025-05-14 11:08:05.238 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
- 2025-05-14 11:08:05.238 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'springUtils'
- 2025-05-14 11:08:05.238 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
- 2025-05-14 11:08:05.238 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'conversionServicePostProcessor'
- 2025-05-14 11:08:05.239 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
- 2025-05-14 11:08:05.239 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
- 2025-05-14 11:08:05.241 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
- 2025-05-14 11:08:05.241 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
- 2025-05-14 11:08:05.241 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
- 2025-05-14 11:08:05.241 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
- 2025-05-14 11:08:05.241 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
- 2025-05-14 11:08:05.243 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
- 2025-05-14 11:08:05.243 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAsyncAnnotationProcessor'
- 2025-05-14 11:08:05.243 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.ProxyAsyncConfiguration'
- 2025-05-14 11:08:05.244 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalScheduledAnnotationProcessor'
- 2025-05-14 11:08:05.244 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.SchedulingConfiguration'
- 2025-05-14 11:08:05.245 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'methodValidationPostProcessor'
- 2025-05-14 11:08:05.252 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
- 2025-05-14 11:08:05.253 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
- 2025-05-14 11:08:05.253 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
- 2025-05-14 11:08:05.254 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
- 2025-05-14 11:08:05.254 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
- 2025-05-14 11:08:05.254 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.cache.annotation.ProxyCachingConfiguration'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'metaDataSourceAdvisor'
- 2025-05-14 11:08:05.255 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'methodSecurityMetadataSource'
- 2025-05-14 11:08:05.256 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration'
- 2025-05-14 11:08:05.256 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicDatasourceAnnotationAdvisor'
- 2025-05-14 11:08:05.256 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.256 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.256 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.260 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.DataScopeAspect.doBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.DataScope) throws java.lang.Throwable
- 2025-05-14 11:08:05.262 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public java.lang.Object com.ruoyi.framework.aspectj.DataSourceAspect.around(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
- 2025-05-14 11:08:05.264 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.boBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log)
- 2025-05-14 11:08:05.265 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.doAfterReturning(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log,java.lang.Object)
- 2025-05-14 11:08:05.266 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.LogAspect.doAfterThrowing(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.Log,java.lang.Exception)
- 2025-05-14 11:08:05.267 [DEBUG] [restartedMain] [org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.getAdvice:258] - Found AspectJ method: public void com.ruoyi.framework.aspectj.RateLimiterAspect.doBefore(org.aspectj.lang.JoinPoint,com.ruoyi.common.annotation.RateLimiter) throws java.lang.Throwable
- 2025-05-14 11:08:05.270 [DEBUG] [restartedMain] [org.springframework.core.LocalVariableTableParameterNameDiscoverer.inspectClass:105] - Cannot find '.class' file for class [class com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$361b52a7] - unable to determine constructor/method parameter names
- 2025-05-14 11:08:05.270 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties'
- 2025-05-14 11:08:05.271 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.271 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.271 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
- 2025-05-14 11:08:05.271 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.271 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.272 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.272 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.272 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.272 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.283 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:08:05.283 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.283 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.283 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.283 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration'
- 2025-05-14 11:08:05.287 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' via constructor to bean named 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties'
- 2025-05-14 11:08:05.288 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$361b52a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:08:05.288 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dynamicTransactionAdvisor'
- 2025-05-14 11:08:05.295 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dsProcessor'
- 2025-05-14 11:08:05.296 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dsProcessor' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@289cf717'
- 2025-05-14 11:08:05.296 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:08:05.298 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dynamicDatasourceAnnotationAdvisor' via factory method to bean named 'dsProcessor'
- 2025-05-14 11:08:05.299 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'objectPostProcessor'
- 2025-05-14 11:08:05.299 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration'
- 2025-05-14 11:08:05.300 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'objectPostProcessor' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@289cf717'
- 2025-05-14 11:08:05.301 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@fa941d9' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:08:05.307 [INFO] [restartedMain] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization:376] - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2025-05-14 11:08:05.311 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'cacheOperationSource'
- 2025-05-14 11:08:05.315 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'cacheInterceptor'
- 2025-05-14 11:08:05.316 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'cacheInterceptor' via factory method to bean named 'cacheOperationSource'
- 2025-05-14 11:08:05.317 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.cache.config.internalCacheAdvisor' via factory method to bean named 'cacheOperationSource'
- 2025-05-14 11:08:05.317 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.cache.config.internalCacheAdvisor' via factory method to bean named 'cacheInterceptor'
- 2025-05-14 11:08:05.321 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'transactionAttributeSource'
- 2025-05-14 11:08:05.325 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'transactionInterceptor'
- 2025-05-14 11:08:05.326 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
- 2025-05-14 11:08:05.327 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
- 2025-05-14 11:08:05.327 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
- 2025-05-14 11:08:05.329 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'webMvcObjectMapperConfigurer'
- 2025-05-14 11:08:05.331 [DEBUG] [restartedMain] [org.springframework.ui.context.support.UiApplicationContextUtils.initThemeSource:85] - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@ec9271f]
- 2025-05-14 11:08:05.332 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
- 2025-05-14 11:08:05.332 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
- 2025-05-14 11:08:05.335 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
- 2025-05-14 11:08:05.335 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
- 2025-05-14 11:08:05.338 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
- 2025-05-14 11:08:05.338 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
- 2025-05-14 11:08:05.340 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.348 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.349 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
- 2025-05-14 11:08:05.350 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.351 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
- 2025-05-14 11:08:05.351 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
- 2025-05-14 11:08:05.353 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
- 2025-05-14 11:08:05.354 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.358 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
- 2025-05-14 11:08:05.358 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
- 2025-05-14 11:08:05.359 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.362 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'errorPageCustomizer'
- 2025-05-14 11:08:05.362 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
- 2025-05-14 11:08:05.363 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2025-05-14 11:08:05.366 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dispatcherServletRegistration'
- 2025-05-14 11:08:05.366 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
- 2025-05-14 11:08:05.368 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'dispatcherServlet'
- 2025-05-14 11:08:05.368 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
- 2025-05-14 11:08:05.369 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:08:05.375 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:08:05.396 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
- 2025-05-14 11:08:05.396 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2025-05-14 11:08:05.397 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'multipartConfigElement'
- 2025-05-14 11:08:05.397 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
- 2025-05-14 11:08:05.397 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
- 2025-05-14 11:08:05.400 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
- 2025-05-14 11:08:05.408 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.createArgumentArray:808] - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
- 2025-05-14 11:08:05.431 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getArchiveFileDocumentRoot:81] - Code archive: C:\Users\QiniuKj\.m2\repository\org\springframework\boot\spring-boot\2.5.15\spring-boot-2.5.15.jar
- 2025-05-14 11:08:05.431 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getExplodedWarFileDocumentRoot:125] - Code archive: C:\Users\QiniuKj\.m2\repository\org\springframework\boot\spring-boot\2.5.15\spring-boot-2.5.15.jar
- 2025-05-14 11:08:05.431 [DEBUG] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.logNoDocumentRoots:149] - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
- 2025-05-14 11:08:05.448 [INFO] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize:108] - Tomcat initialized with port(s): 8080 (http)
- 2025-05-14 11:08:05.449 [INFO] [restartedMain] [org.apache.coyote.http11.Http11NioProtocol.log:173] - Initializing ProtocolHandler ["http-nio-8080"]
- 2025-05-14 11:08:05.449 [INFO] [restartedMain] [org.apache.catalina.core.StandardService.log:173] - Starting service [Tomcat]
- 2025-05-14 11:08:05.449 [INFO] [restartedMain] [org.apache.catalina.core.StandardEngine.log:173] - Starting Servlet engine: [Apache Tomcat/9.0.75]
- 2025-05-14 11:08:05.502 [INFO] [restartedMain] [org.apache.catalina.core.ContainerBase.[Tomcat-1].[localhost].[/].log:173] - Initializing Spring embedded WebApplicationContext
- 2025-05-14 11:08:05.502 [DEBUG] [restartedMain] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext:284] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2025-05-14 11:08:05.502 [INFO] [restartedMain] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext:290] - Root WebApplicationContext: initialization completed in 1036 ms
- 2025-05-14 11:08:05.504 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'someFilterRegistration'
- 2025-05-14 11:08:05.504 [DEBUG] [restartedMain] [org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:225] - Creating shared instance of singleton bean 'filterConfig'
- 2025-05-14 11:08:05.505 [ERROR] [restartedMain] [org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup:61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.BeanCreationException. Message: Error creating bean with name 'filterConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- 2025-05-14 11:08:05.507 [INFO] [restartedMain] [org.apache.catalina.core.StandardService.log:173] - Stopping service [Tomcat]
- 2025-05-14 11:08:05.510 [WARN] [restartedMain] [org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext.refresh:591] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- 2025-05-14 11:08:05.517 [DEBUG] [restartedMain] [org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener.logAutoConfigurationReport:126] -
- ============================
- CONDITIONS EVALUATION REPORT
- ============================
- Positive matches:
- -----------------
- AopAutoConfiguration matched:
- - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
- BeanValidatorPluginsConfiguration matched:
- - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition)
- CacheAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) found bean 'cacheInterceptor'; @ConditionalOnMissingBean (names: cacheResolver types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- CacheAutoConfiguration#cacheManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.cache.CacheManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DataSourceInitializationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DataSourceTransactionManagerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition)
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DispatcherServletAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)
- - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition)
- - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
- - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
- DruidDataSourceAutoConfigure matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.pool.DruidDataSource' (OnClassCondition)
- DruidDynamicDataSourceConfiguration matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure' (OnClassCondition)
- DynamicDataSourceAutoConfiguration matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.enabled=true) matched (OnPropertyCondition)
- DynamicDataSourceAutoConfiguration#dataSourceInitEvent matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.event.DataSourceInitEvent; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceAutoConfiguration#dsProcessor matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.processor.DsProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceAutoConfiguration#dynamicDatasourceAnnotationAdvisor matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.aop.enabled=true) matched (OnPropertyCondition)
- DynamicDataSourceAutoConfiguration#dynamicTransactionAdvisor matched:
- - @ConditionalOnProperty (spring.datasource.dynamic.seata=false) matched (OnPropertyCondition)
- DynamicDataSourceCreatorAutoConfiguration#dataSourceCreator matched:
- - @ConditionalOnMissingBean (types: com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator; SearchStrategy: all) did not find any beans (OnBeanCondition)
- DynamicDataSourceCreatorAutoConfiguration.DruidDataSourceCreatorConfiguration matched:
- - @ConditionalOnClass found required class 'com.alibaba.druid.pool.DruidDataSource' (OnClassCondition)
- DynamicDataSourceCreatorAutoConfiguration.HikariDataSourceCreatorConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- ErrorMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- ErrorMvcAutoConfiguration#basicErrorController matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration#errorAttributes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
- - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
- - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
- - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
- FreeMarkerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'freemarker.template.Configuration', 'org.springframework.ui.freemarker.FreeMarkerConfigurationFactory' (OnClassCondition)
- FreeMarkerServletWebConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- FreeMarkerServletWebConfiguration#freeMarkerConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.freemarker.FreeMarkerConfig; SearchStrategy: all) did not find any beans (OnBeanCondition)
- FreeMarkerServletWebConfiguration#freeMarkerViewResolver matched:
- - @ConditionalOnProperty (spring.freemarker.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (names: freeMarkerViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.google.gson.Gson' (OnClassCondition)
- GsonAutoConfiguration#gson matched:
- - @ConditionalOnMissingBean (types: com.google.gson.Gson; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonAutoConfiguration#gsonBuilder matched:
- - @ConditionalOnMissingBean (types: com.google.gson.GsonBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- GsonHttpMessageConvertersConfiguration matched:
- - @ConditionalOnClass found required class 'com.google.gson.Gson' (OnClassCondition)
- HttpEncodingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)
- HttpEncodingAutoConfiguration#characterEncodingFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- HttpMessageConvertersAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)
- HttpMessageConvertersAutoConfiguration#messageConverters matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JdbcTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- JdbcTemplateConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JedisConnectionConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.commons.pool2.impl.GenericObjectPool', 'org.springframework.data.redis.connection.jedis.JedisConnection', 'redis.clients.jedis.Jedis' (OnClassCondition)
- - @ConditionalOnProperty (spring.redis.client-type=jedis) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
- JmxAutoConfiguration#mbeanExporter matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration#mbeanServer matched:
- - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- JmxAutoConfiguration#objectNamingStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)
- LifecycleAutoConfiguration#defaultLifecycleProcessor matched:
- - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration matched:
- - Initialized Restarter Condition available and initialized (OnInitializedRestarterCondition)
- LocalDevToolsAutoConfiguration.LiveReloadConfiguration matched:
- - @ConditionalOnProperty (spring.devtools.livereload.enabled) matched (OnPropertyCondition)
- LocalDevToolsAutoConfiguration.LiveReloadConfiguration#liveReloadServer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.livereload.LiveReloadServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration matched:
- - @ConditionalOnProperty (spring.devtools.restart.enabled) matched (OnPropertyCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#classPathFileSystemWatcher matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.classpath.ClassPathFileSystemWatcher; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#classPathRestartStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.devtools.classpath.ClassPathRestartStrategy; SearchStrategy: all) did not find any beans (OnBeanCondition)
- LocalDevToolsAutoConfiguration.RestartConfiguration#conditionEvaluationDeltaLoggingListener matched:
- - @ConditionalOnProperty (spring.devtools.restart.log-condition-evaluation-delta) matched (OnPropertyCondition)
- MultipartAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
- MultipartAutoConfiguration#multipartConfigElement matched:
- - @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MultipartAutoConfiguration#multipartResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- MybatisLanguageDriverAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition)
- MybatisPlusAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single primary bean 'dynamicDataSource' from beans 'masterDataSource', 'dynamicDataSource' (OnBeanCondition)
- MybatisPlusAutoConfiguration#sqlSessionFactory matched:
- - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisPlusAutoConfiguration#sqlSessionTemplate matched:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition)
- MybatisPlusLanguageDriverAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition)
- NamedParameterJdbcTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- NettyAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.netty.util.NettyRuntime' (OnClassCondition)
- OpenApiAutoConfiguration matched:
- - @ConditionalOnProperty (springfox.documentation.enabled=true) matched (OnPropertyCondition)
- OpenApiControllerWebMvc matched:
- - found 'session' scope (OnWebApplicationCondition)
- OpenApiWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- PageHelperAutoConfiguration matched:
- - @ConditionalOnBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) found bean 'sqlSessionFactory' (OnBeanCondition)
- PersistenceExceptionTranslationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
- PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched:
- - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
- PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
- QuartzAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.quartz.Scheduler', 'org.springframework.scheduling.quartz.SchedulerFactoryBean', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
- QuartzAutoConfiguration#quartzScheduler matched:
- - @ConditionalOnMissingBean (types: org.springframework.scheduling.quartz.SchedulerFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
- RedisAutoConfiguration#stringRedisTemplate matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found a single bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.core.StringRedisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisCacheConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
- - Cache org.springframework.boot.autoconfigure.cache.RedisCacheConfiguration automatic cache type (CacheCondition)
- - @ConditionalOnBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RedisRepositoriesAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
- - @ConditionalOnProperty (spring.data.redis.repositories.enabled=true) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.repository.support.RedisRepositoryFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RestTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition)
- RestTemplateAutoConfiguration#restTemplateBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- RestTemplateAutoConfiguration#restTemplateBuilderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SecurityAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
- SecurityAutoConfiguration#authenticationEventPublisher matched:
- - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationEventPublisher; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SecurityFilterAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- SecurityFilterAutoConfiguration#securityFilterChainRegistration matched:
- - @ConditionalOnBean (names: springSecurityFilterChain; SearchStrategy: all) found bean 'springSecurityFilterChain' (OnBeanCondition)
- ServletWebServerFactoryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'javax.servlet.ServletRequest' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
- - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)
- ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
- SpringApplicationAdminJmxAutoConfiguration matched:
- - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)
- SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration#pageableCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringDataWebAutoConfiguration#sortCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- SpringfoxWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- SqlInitializationAutoConfiguration matched:
- - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.sql.init.AbstractScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Swagger2ControllerWebMvc matched:
- - found 'session' scope (OnWebApplicationCondition)
- Swagger2WebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- SwaggerUiWebMvcConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (springfox.documentation.swagger-ui.enabled=true) matched (OnPropertyCondition)
- TaskExecutionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)
- TaskExecutionAutoConfiguration#taskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TaskSchedulingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
- TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TelegramBotConfig matched:
- - @ConditionalOnClass found required class 'org.telegram.telegrambots.meta.TelegramBotsApi' (OnClassCondition)
- TransactionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
- TransactionAutoConfiguration#platformTransactionManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TransactionAutoConfiguration.TransactionTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition)
- TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ValidationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition)
- - @ConditionalOnResource found location classpath:META-INF/services/javax.validation.spi.ValidationProvider (OnResourceCondition)
- ValidationAutoConfiguration#defaultValidator matched:
- - @ConditionalOnMissingBean (types: javax.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
- ValidationAutoConfiguration#methodValidationPostProcessor matched:
- - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration#formContentFilter matched:
- - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:
- - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:
- - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:
- - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebMvcRequestHandlerProvider matched:
- - found 'session' scope (OnWebApplicationCondition)
- WebSecurityEnablerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (names: springSecurityFilterChain; SearchStrategy: all) did not find any beans (OnBeanCondition)
- WebSocketMessagingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
- - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Negative matches:
- -----------------
- ActiveMQAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
- AopAutoConfiguration.ClassProxyingConfiguration:
- Did not match:
- - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)
- ArtemisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)
- BatchAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)
- CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
- CaffeineCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)
- CassandraAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- CassandraReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)
- CassandraRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
- ClientHttpConnectorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- CodecsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- ContractConfig:
- Did not match:
- - @ConditionalOnProperty (contract.address) did not find property 'contract.address' (OnPropertyCondition)
- CouchbaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
- CouchbaseReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
- CouchbaseRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
- DevToolsDataSourceAutoConfiguration:
- Did not match:
- - DevTools DataSource Condition did not find a single DataSource bean (DevToolsDataSourceAutoConfiguration.DevToolsDataSourceCondition)
- Matched:
- - Devtools devtools enabled. (OnEnabledDevToolsCondition)
- DevToolsDataSourceAutoConfiguration.DatabaseShutdownExecutorEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
- - Ancestor org.springframework.boot.devtools.autoconfigure.DevToolsDataSourceAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- DevToolsR2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
- DruidConfig#removeDruidFilterRegistrationBean:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.statViewServlet.enabled=true) did not find property 'spring.datasource.druid.statViewServlet.enabled' (OnPropertyCondition)
- DruidConfig#slaveDataSource:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.slave.enabled=true) did not find property 'enabled' (OnPropertyCondition)
- DruidDataSourceAutoConfigure#dataSource:
- Did not match:
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) found beans of type 'javax.sql.DataSource' masterDataSource, dynamicDataSource (OnBeanCondition)
- DruidFilterConfiguration#commonsLogFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.commons-log.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#configFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.config.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#encodingConvertFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.encoding.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#log4j2Filter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.log4j2.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#log4jFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.log4j.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#slf4jLogFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.slf4j.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#statFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.stat.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#wallConfig:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidFilterConfiguration#wallFilter:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition)
- DruidSpringAopConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.aop-patterns) did not find property 'spring.datasource.druid.aop-patterns' (OnPropertyCondition)
- DruidStatViewServletConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.stat-view-servlet.enabled=true) did not find property 'spring.datasource.druid.stat-view-servlet.enabled' (OnPropertyCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- DruidWebStatFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.druid.web-stat-filter.enabled=true) did not find property 'spring.datasource.druid.web-stat-filter.enabled' (OnPropertyCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- DynamicDataSourceAutoConfiguration#dataSource:
- Did not match:
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) found beans of type 'javax.sql.DataSource' masterDataSource, dynamicDataSource (OnBeanCondition)
- DynamicDataSourceCreatorAutoConfiguration.BeeCpDataSourceCreatorConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.beecp.BeeDataSource' (OnClassCondition)
- DynamicDataSourceCreatorAutoConfiguration.Dbcp2DataSourceCreatorConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
- EhCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' (OnClassCondition)
- ElasticsearchDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate' (OnClassCondition)
- ElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition)
- ElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestHighLevelClient' (OnClassCondition)
- EmbeddedLdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
- EmbeddedMongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
- ErrorWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
- FilterConfig#xssFilterRegistration:
- Did not match:
- - @ConditionalOnProperty (xss.enabled=true) did not find property 'xss.enabled' (OnPropertyCondition)
- FlywayAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
- FreeMarkerNonWebConfiguration:
- Did not match:
- - @ConditionalOnWebApplication found 'session' scope and did not find reactive web application classes (OnWebApplicationCondition)
- FreeMarkerReactiveWebConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- FreeMarkerServletWebConfiguration#resourceUrlEncodingFilter:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
- GenericCacheConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.Cache; SearchStrategy: all) did not find any beans of type org.springframework.cache.Cache (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
- GroovyTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
- GsonHttpMessageConvertersConfiguration.GsonHttpMessageConverterConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.JacksonJsonbUnavailable NoneNestedConditions 1 matched 1 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JsonbPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jsonb) did not find property 'spring.mvc.converters.preferred-json-mapper'; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JacksonAvailable @ConditionalOnBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; SearchStrategy: all) found bean 'mappingJackson2HttpMessageConverter'; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.GsonPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=gson) did not find property 'spring.mvc.converters.preferred-json-mapper' (GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition)
- H2ConsoleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition)
- HazelcastAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HazelcastCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HazelcastJpaDependencyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
- HibernateJpaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' (OnClassCondition)
- HttpHandlerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
- HypermediaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)
- InfinispanCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)
- InfluxDbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
- IntegrationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
- JCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)
- JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
- JdbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)
- JerseyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
- JmsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.jms.Message' (OnClassCondition)
- JndiConnectionFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
- JndiDataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
- JooqAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
- JpaRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
- JsonbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
- JsonbHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
- JtaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition)
- KafkaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
- LdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
- LdapRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
- LettuceConnectionConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.lettuce.core.RedisClient' (OnClassCondition)
- LiquibaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)
- MailSenderAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on MailSenderAutoConfiguration.MailSenderCondition.JndiNameProperty @ConditionalOnProperty (spring.mail.jndi-name) did not find property 'jndi-name'; NestedCondition on MailSenderAutoConfiguration.MailSenderCondition.HostProperty @ConditionalOnProperty (spring.mail.host) did not find property 'host' (MailSenderAutoConfiguration.MailSenderCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.mail.internet.MimeMessage', 'javax.activation.MimeType', 'org.springframework.mail.MailSender' (OnClassCondition)
- MailSenderValidatorAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition)
- MessageSourceAutoConfiguration:
- Did not match:
- - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
- MongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MongoDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MongoReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
- MongoRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
- MustacheAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
- MybatisAutoConfiguration#sqlSessionFactory:
- Did not match:
- - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) found beans of type 'org.apache.ibatis.session.SqlSessionFactory' sqlSessionFactory (OnBeanCondition)
- MybatisAutoConfiguration#sqlSessionTemplate:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) found beans of type 'org.mybatis.spring.SqlSessionTemplate' sqlSessionTemplate (OnBeanCondition)
- MybatisAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) found beans of type 'org.mybatis.spring.mapper.MapperScannerConfigurer' com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0 (OnBeanCondition)
- MybatisLanguageDriverAutoConfiguration.FreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.LegacyVelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.velocity.Driver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.ThymeleafConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition)
- MybatisLanguageDriverAutoConfiguration.VelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition)
- MybatisPlusAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) found beans of type 'org.mybatis.spring.mapper.MapperScannerConfigurer' com.ruoyi.framework.config.ApplicationConfig#MapperScannerRegistrar#0 (OnBeanCondition)
- MybatisPlusLanguageDriverAutoConfiguration.FreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.ThymeleafConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition)
- MybatisPlusLanguageDriverAutoConfiguration.VelocityConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition)
- Neo4jAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- Neo4jRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
- NoOpCacheConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) found beans of type 'org.springframework.cache.CacheManager' cacheManager (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
- OAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.client.registration.ClientRegistration' (OnClassCondition)
- OAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken' (OnClassCondition)
- OpenApiControllerWebFlux:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- OpenApiWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- ProjectInfoAutoConfiguration#buildProperties:
- Did not match:
- - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
- ProjectInfoAutoConfiguration#gitProperties:
- Did not match:
- - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
- QuartzAutoConfiguration.JdbcStoreTypeConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.quartz.job-store-type=jdbc) did not find property 'job-store-type' (OnPropertyCondition)
- R2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- R2dbcDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)
- R2dbcInitializationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition)
- R2dbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
- R2dbcTransactionManagerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)
- RSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RSocketRequesterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RSocketSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)
- RSocketServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)
- RSocketStrategiesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
- RabbitAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)
- ReactiveElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient' (OnClassCondition)
- ReactiveElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.client.HttpClient' (OnClassCondition)
- ReactiveOAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- ReactiveOAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- ReactiveSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- ReactiveUserDetailsServiceAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition.ReactiveWebApplicationCondition did not find reactive web application classes; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition.RSocketSecurityEnabledCondition @ConditionalOnBean (types: org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler; SearchStrategy: all) did not find any beans of type org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler (ReactiveUserDetailsServiceAutoConfiguration.ReactiveUserDetailsServiceCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
- ReactiveWebServerFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- RedisAutoConfiguration#redisTemplate:
- Did not match:
- - @ConditionalOnMissingBean (names: redisTemplate; SearchStrategy: all) found beans named redisTemplate (OnBeanCondition)
- RedisReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
- RemoteDevToolsAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.devtools.remote.secret) did not find property 'secret' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.servlet.Filter', 'org.springframework.http.server.ServerHttpRequest' (OnClassCondition)
- RepositoryRestMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
- SaOAuth2BeanInject:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition)
- SaOAuth2BeanRegister:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition)
- SaSsoBeanInject:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition)
- SaSsoBeanRegister:
- Did not match:
- - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition)
- Saml2RelyingPartyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)
- SecurityDataConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.data.repository.query.SecurityEvaluationContextExtension' (OnClassCondition)
- SendGridAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
- ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)
- ServletWebServerFactoryConfiguration.EmbeddedJetty:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
- ServletWebServerFactoryConfiguration.EmbeddedUndertow:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
- SessionAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
- SimpleCacheConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) found beans of type 'org.springframework.cache.CacheManager' cacheManager (OnBeanCondition)
- Matched:
- - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
- SolrAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition)
- SpringBootWebSecurityConfiguration:
- Did not match:
- - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter,org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) found beans of type 'org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter' securityConfig; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass found required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
- SpringDataRestConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.core.config.RepositoryRestConfiguration' (OnClassCondition)
- SpringfoxWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- Swagger2ControllerWebFlux:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- Swagger2WebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- SwaggerUiWebFluxConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- TaskExecutionAutoConfiguration#applicationTaskExecutor:
- Did not match:
- - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) found beans of type 'java.util.concurrent.Executor' threadPoolTaskExecutor, scheduledExecutorService, socketThread, myTaskAsyncPool (OnBeanCondition)
- TaskSchedulingAutoConfiguration#taskScheduler:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.scheduling.annotation.SchedulingConfigurer,org.springframework.scheduling.TaskScheduler,java.util.concurrent.ScheduledExecutorService; SearchStrategy: all) found beans of type 'java.util.concurrent.ScheduledExecutorService' scheduledExecutorService (OnBeanCondition)
- ThymeleafAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.thymeleaf.spring5.SpringTemplateEngine' (OnClassCondition)
- TransactionAutoConfiguration#transactionalOperator:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) found beans of type 'org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration' org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration (OnBeanCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration:
- Did not match:
- - Ancestor org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
- - Ancestor org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- UserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationManager,org.springframework.security.authentication.AuthenticationProvider,org.springframework.security.core.userdetails.UserDetailsService,org.springframework.security.oauth2.jwt.JwtDecoder,org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector,org.springframework.security.oauth2.client.registration.ClientRegistrationRepository; SearchStrategy: all) found beans of type 'org.springframework.security.authentication.AuthenticationManager' authenticationManagerBean and found beans of type 'org.springframework.security.core.userdetails.UserDetailsService' userDetailsServiceImpl (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
- WebClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
- WebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
- WebFluxRequestHandlerProvider:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- WebMvcAutoConfiguration#hiddenHttpMethodFilter:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)
- WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
- WebServiceTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.client.core.WebServiceTemplate' (OnClassCondition)
- WebServicesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
- WebSocketMessagingAutoConfiguration.WebSocketMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.socket.config.annotation.DelegatingWebSocketMessageBrokerConfiguration,com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans of type org.springframework.web.socket.config.annotation.DelegatingWebSocketMessageBrokerConfiguration (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.messaging.simp.config.AbstractMessageBrokerConfiguration' (OnClassCondition)
- WebSocketReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
- WebSocketServletAutoConfiguration.Jetty10WebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.websocket.javax.server.internal.JavaxWebSocketServerContainer', 'org.eclipse.jetty.websocket.server.JettyWebSocketServerContainer' (OnClassCondition)
- WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition)
- WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
- XADataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' (OnClassCondition)
- Exclusions:
- -----------
- org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
- Unconditional classes:
- ----------------------
- org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
- cn.dev33.satoken.spring.SaBeanRegister
- cn.dev33.satoken.dao.SaTokenDaoRedisJackson
- org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
- org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration
- cn.dev33.satoken.spring.SaBeanInject
- org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration
- org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
- 2025-05-14 11:08:05.524 [ERROR] [restartedMain] [org.springframework.boot.SpringApplication.reportFailure:870] - Application run failed
- org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:163)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:780)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:453)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:343)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1359)
- at com.ruoyi.AdminApplication.main(AdminApplication.java:28)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
- at java.base/java.lang.reflect.Method.invoke(Method.java:578)
- at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49)
- Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:142)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:456)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:204)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:182)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:160)
- ... 11 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'filterConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:410)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:260)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:234)
- at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
- at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4936)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:871)
- at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:795)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:871)
- at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:249)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.StandardService.startInternal(StandardService.java:428)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:914)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
- at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
- ... 16 common frames omitted
- Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'xss.excludes' in value "${xss.excludes}"
- at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:180)
- at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126)
- at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239)
- at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210)
- at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:191)
- at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:936)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1332)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)
- at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399)
- ... 65 common frames omitted
- 2025-05-14 11:08:08.117 [DEBUG] [Thread-7] [org.springframework.boot.devtools.restart.classloader.RestartClassLoader.<init>:85] - Created RestartClassLoader org.springframework.boot.devtools.restart.classloader.RestartClassLoader@184aad53
- 2025-05-14 11:08:08.117 [DEBUG] [Thread-7] [org.springframework.boot.devtools.restart.Restarter.doStart:281] - Starting application com.ruoyi.AdminApplication with URLs [file:/D:/workspace/echo2.0/ruoyi-admin/target/classes/, file:/D:/workspace/echo2.0/ruoyi-framework/target/classes/, file:/D:/workspace/echo2.0/ruoyi-system/target/classes/, file:/D:/workspace/echo2.0/ruoyi-quartz/target/classes/, file:/D:/workspace/echo2.0/ruoyi-common/target/classes/, file:/C:/Users/QiniuKj/.m2/repository/com/alibaba/fastjson2/fastjson2/2.0.25/fastjson2-2.0.25.jar, file:/C:/Users/QiniuKj/.m2/repository/com/alibaba/fastjson/1.2.47/fastjson-1.2.47.jar, file:/D:/workspace/echo2.0/ruoyi-generator/target/classes/]
|