2
0

push.log 1.7 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991
  1. 2019-12-01 20:56:31.199 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'logging.register-shutdown-hook' in any property source
  2. 2019-12-01 20:56:31.203 DEBUG 1725 --- [main] .c.l.ClasspathLoggingApplicationListener : Application started with classpath: [file:/Users/dali/Workspace/push_server/target/surefire/surefirebooter4876414728699984044.jar]
  3. 2019-12-01 20:56:31.205 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'context.listener.classes' in any property source
  4. 2019-12-01 20:56:31.214 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Adding PropertySource 'configurationProperties' with highest search precedence
  5. 2019-12-01 20:56:31.220 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.beaninfo.ignore' in any property source
  6. 2019-12-01 20:56:31.223 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.banner.image.location' in any property source
  7. 2019-12-01 20:56:31.228 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.banner.location' in any property source
  8. 2019-12-01 20:56:31.266 DEBUG 1725 --- [background-preinit] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL
  9. 2019-12-01 20:56:31.284 DEBUG 1725 --- [background-preinit] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
  10. 2019-12-01 20:56:31.284 DEBUG 1725 --- [background-preinit] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
  11. 2019-12-01 20:56:31.286 DEBUG 1725 --- [background-preinit] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
  12. 2019-12-01 20:56:31.287 DEBUG 1725 --- [background-preinit] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
  13. 2019-12-01 20:56:31.288 DEBUG 1725 --- [background-preinit] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
  14. 2019-12-01 20:56:31.313 DEBUG 1725 --- [main] o.s.w.c.s.StandardServletEnvironment : Adding PropertySource 'servletConfigInitParams' with lowest search precedence
  15. 2019-12-01 20:56:31.315 DEBUG 1725 --- [main] o.s.w.c.s.StandardServletEnvironment : Adding PropertySource 'servletContextInitParams' with lowest search precedence
  16. 2019-12-01 20:56:31.325 DEBUG 1725 --- [main] o.s.w.c.s.StandardServletEnvironment : Adding PropertySource 'systemProperties' with lowest search precedence
  17. 2019-12-01 20:56:31.326 DEBUG 1725 --- [main] o.s.w.c.s.StandardServletEnvironment : Adding PropertySource 'systemEnvironment' with lowest search precedence
  18. 2019-12-01 20:56:31.326 DEBUG 1725 --- [main] o.s.w.c.s.StandardServletEnvironment : Initialized StandardServletEnvironment with PropertySources [StubPropertySource@951031848 {name='servletConfigInitParams', properties=java.lang.Object@376a0d86}, StubPropertySource@1650813924 {name='servletContextInitParams', properties=java.lang.Object@17d919b6}, MapPropertySource@1408482749 {name='systemProperties', properties={java.runtime.name=Java(TM) SE Runtime Environment, sun.boot.library.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib, java.vm.version=25.221-b11, gopherProxySet=false, java.vm.vendor=Oracle Corporation, java.vendor.url=http://java.oracle.com/, path.separator=:, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=CN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, PID=1725, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/dali/Workspace/push_server, java.runtime.version=1.8.0_221-b11, basedir=/Users/dali/Workspace/push_server, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, java.endorsed.dirs=/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/endorsed, os.arch=x86_64, surefire.real.class.path=/Users/dali/Workspace/push_server/target/surefire/surefirebooter4876414728699984044.jar, java.io.tmpdir=/var/folders/tx/72ygj1dx72ldwynlrxyq1j_w0000gn/T/, line.separator=
  19. , java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, spring.beaninfo.ignore=true, java.library.path=/Users/dali/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/dali/Workspace/push_server/target/test-classes:/Users/dali/Workspace/push_server/target/classes:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.6.RELEASE/spring-boot-starter-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot/2.0.6.RELEASE/spring-boot-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-context/5.0.10.RELEASE/spring-context-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.6.RELEASE/spring-boot-autoconfigure-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.6.RELEASE/spring-boot-starter-logging-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/dali/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/dali/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.10.0/log4j-to-slf4j-2.10.0.jar:/Users/dali/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/Users/dali/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/dali/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/dali/.m2/repository/org/springframework/spring-core/5.0.10.RELEASE/spring-core-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-jcl/5.0.10.RELEASE/spring-jcl-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.6.RELEASE/spring-boot-starter-web-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.6.RELEASE/spring-boot-starter-json-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.7/jackson-datatype-jdk8-2.9.7.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.7/jackson-datatype-jsr310-2.9.7.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.7/jackson-module-parameter-names-2.9.7.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.6.RELEASE/spring-boot-starter-tomcat-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.34/tomcat-embed-el-8.5.34.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.34/tomcat-embed-websocket-8.5.34.jar:/Users/dali/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.13.Final/hibernate-validator-6.0.13.Final.jar:/Users/dali/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar:/Users/dali/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar:/Users/dali/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/Users/dali/.m2/repository/org/springframework/spring-web/5.0.10.RELEASE/spring-web-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-beans/5.0.10.RELEASE/spring-beans-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-webmvc/5.0.10.RELEASE/spring-webmvc-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-aop/5.0.10.RELEASE/spring-aop-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-expression/5.0.10.RELEASE/spring-expression-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.6.RELEASE/spring-boot-starter-test-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-test/2.0.6.RELEASE/spring-boot-test-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.6.RELEASE/spring-boot-test-autoconfigure-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/Users/dali/.m2/repository/net/minidev/json-smart/2.3/json-smart-2.3.jar:/Users/dali/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar:/Users/dali/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/Users/dali/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/dali/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/Users/dali/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/Users/dali/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/Users/dali/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/Users/dali/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/Users/dali/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/dali/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar:/Users/dali/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/Users/dali/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/dali/.m2/repository/org/springframework/spring-test/5.0.10.RELEASE/spring-test-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:/Users/dali/Workspace/push_server/src/main/libs/MiPush_SDK_Server_2_2_19.jar:/Users/dali/.m2/repository/com/meizu/flyme/push-server-sdk/1.2.7.20180307_release/push-server-sdk-1.2.7.20180307_release.jar:/Users/dali/.m2/repository/com/alibaba/fastjson/1.1.28/fastjson-1.1.28.jar:/Users/dali/.m2/repository/com/google/code/gson/gson/2.8.2/gson-2.8.2.jar:/Users/dali/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar:/Users/dali/.m2/repository/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar:/Users/dali/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/Users/dali/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar:/Users/dali/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/dali/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/dali/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/dali/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/Users/dali/.m2/repository/uk/org/lidalia/slf4j-test/1.0.0-jdk6/slf4j-test-1.0.0-jdk6.jar:/Users/dali/.m2/repository/uk/org/lidalia/lidalia-lang/1.0.0-jdk6/lidalia-lang-1.0.0-jdk6.jar:/Users/dali/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/dali/.m2/repository/com/google/guava/guava/14.0.1/guava-14.0.1.jar:/Users/dali/.m2/repository/uk/org/lidalia/lidalia-slf4j-ext/1.0.0-jdk6/lidalia-slf4j-ext-1.0.0-jdk6.jar:/Users/dali/.m2/repository/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar:/Users/dali/.m2/repository/com/google/code/findbugs/annotations/2.0.3/annotations-2.0.3.jar:/Users/dali/.m2/repository/org/mockito/mockito-all/1.9.5/mockito-all-1.9.5.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar:/Users/dali/.m2/repository/com/turo/pushy/0.13.10/pushy-0.13.10.jar:/Users/dali/.m2/repository/io/netty/netty-codec-http2/4.1.29.Final/netty-codec-http2-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-http/4.1.29.Final/netty-codec-http-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec/4.1.29.Final/netty-codec-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-handler/4.1.29.Final/netty-handler-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-buffer/4.1.29.Final/netty-buffer-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-handler-proxy/4.1.29.Final/netty-handler-proxy-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-transport/4.1.29.Final/netty-transport-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-socks/4.1.29.Final/netty-codec-socks-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-resolver-dns/4.1.29.Final/netty-resolver-dns-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-resolver/4.1.29.Final/netty-resolver-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-common/4.1.29.Final/netty-common-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-dns/4.1.29.Final/netty-codec-dns-4.1.29.Final.jar:/Users/dali/.m2/repository/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1.jar:/Users/dali/.m2/repository/com/turo/pushy-micrometer-metrics-listener/0.13.10/pushy-micrometer-metrics-listener-0.13.10.jar:/Users/dali/.m2/repository/io/micrometer/micrometer-core/1.0.7/micrometer-core-1.0.7.jar:/Users/dali/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.10/HdrHistogram-2.1.10.jar:/Users/dali/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=10.15.1, LOG_FILE=push.log, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/dali, user.timezone=Asia/Shanghai, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, file.encoding=UTF-8, java.specification.version=1.8, java.class.path=/Users/dali/Workspace/push_server/target/test-classes:/Users/dali/Workspace/push_server/target/classes:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.6.RELEASE/spring-boot-starter-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot/2.0.6.RELEASE/spring-boot-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-context/5.0.10.RELEASE/spring-context-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.6.RELEASE/spring-boot-autoconfigure-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.6.RELEASE/spring-boot-starter-logging-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/dali/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/dali/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.10.0/log4j-to-slf4j-2.10.0.jar:/Users/dali/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/Users/dali/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/dali/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/dali/.m2/repository/org/springframework/spring-core/5.0.10.RELEASE/spring-core-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-jcl/5.0.10.RELEASE/spring-jcl-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.6.RELEASE/spring-boot-starter-web-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.6.RELEASE/spring-boot-starter-json-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.7/jackson-datatype-jdk8-2.9.7.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.7/jackson-datatype-jsr310-2.9.7.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.7/jackson-module-parameter-names-2.9.7.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.6.RELEASE/spring-boot-starter-tomcat-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.34/tomcat-embed-el-8.5.34.jar:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.34/tomcat-embed-websocket-8.5.34.jar:/Users/dali/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.13.Final/hibernate-validator-6.0.13.Final.jar:/Users/dali/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar:/Users/dali/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar:/Users/dali/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/Users/dali/.m2/repository/org/springframework/spring-web/5.0.10.RELEASE/spring-web-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-beans/5.0.10.RELEASE/spring-beans-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-webmvc/5.0.10.RELEASE/spring-webmvc-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-aop/5.0.10.RELEASE/spring-aop-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/spring-expression/5.0.10.RELEASE/spring-expression-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.6.RELEASE/spring-boot-starter-test-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-test/2.0.6.RELEASE/spring-boot-test-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.6.RELEASE/spring-boot-test-autoconfigure-2.0.6.RELEASE.jar:/Users/dali/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/Users/dali/.m2/repository/net/minidev/json-smart/2.3/json-smart-2.3.jar:/Users/dali/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar:/Users/dali/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/Users/dali/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/dali/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/Users/dali/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/Users/dali/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/Users/dali/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/Users/dali/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/Users/dali/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/dali/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar:/Users/dali/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/Users/dali/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/dali/.m2/repository/org/springframework/spring-test/5.0.10.RELEASE/spring-test-5.0.10.RELEASE.jar:/Users/dali/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:/Users/dali/Workspace/push_server/src/main/libs/MiPush_SDK_Server_2_2_19.jar:/Users/dali/.m2/repository/com/meizu/flyme/push-server-sdk/1.2.7.20180307_release/push-server-sdk-1.2.7.20180307_release.jar:/Users/dali/.m2/repository/com/alibaba/fastjson/1.1.28/fastjson-1.1.28.jar:/Users/dali/.m2/repository/com/google/code/gson/gson/2.8.2/gson-2.8.2.jar:/Users/dali/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar:/Users/dali/.m2/repository/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar:/Users/dali/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/Users/dali/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar:/Users/dali/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/dali/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/dali/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/dali/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/Users/dali/.m2/repository/uk/org/lidalia/slf4j-test/1.0.0-jdk6/slf4j-test-1.0.0-jdk6.jar:/Users/dali/.m2/repository/uk/org/lidalia/lidalia-lang/1.0.0-jdk6/lidalia-lang-1.0.0-jdk6.jar:/Users/dali/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/dali/.m2/repository/com/google/guava/guava/14.0.1/guava-14.0.1.jar:/Users/dali/.m2/repository/uk/org/lidalia/lidalia-slf4j-ext/1.0.0-jdk6/lidalia-slf4j-ext-1.0.0-jdk6.jar:/Users/dali/.m2/repository/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar:/Users/dali/.m2/repository/com/google/code/findbugs/annotations/2.0.3/annotations-2.0.3.jar:/Users/dali/.m2/repository/org/mockito/mockito-all/1.9.5/mockito-all-1.9.5.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar:/Users/dali/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar:/Users/dali/.m2/repository/com/turo/pushy/0.13.10/pushy-0.13.10.jar:/Users/dali/.m2/repository/io/netty/netty-codec-http2/4.1.29.Final/netty-codec-http2-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-http/4.1.29.Final/netty-codec-http-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec/4.1.29.Final/netty-codec-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-handler/4.1.29.Final/netty-handler-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-buffer/4.1.29.Final/netty-buffer-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-handler-proxy/4.1.29.Final/netty-handler-proxy-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-transport/4.1.29.Final/netty-transport-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-socks/4.1.29.Final/netty-codec-socks-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-resolver-dns/4.1.29.Final/netty-resolver-dns-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-resolver/4.1.29.Final/netty-resolver-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-common/4.1.29.Final/netty-common-4.1.29.Final.jar:/Users/dali/.m2/repository/io/netty/netty-codec-dns/4.1.29.Final/netty-codec-dns-4.1.29.Final.jar:/Users/dali/.m2/repository/com/eatthepath/fast-uuid/0.1/fast-uuid-0.1.jar:/Users/dali/.m2/repository/com/turo/pushy-micrometer-metrics-listener/0.13.10/pushy-micrometer-metrics-listener-0.13.10.jar:/Users/dali/.m2/repository/io/micrometer/micrometer-core/1.0.7/micrometer-core-1.0.7.jar:/Users/dali/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.10/HdrHistogram-2.1.10.jar:/Users/dali/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:, user.name=dali, java.vm.specification.version=1.8, sun.java.command=/Users/dali/Workspace/push_server/target/surefire/surefirebooter4876414728699984044.jar /Users/dali/Workspace/push_server/target/surefire 2019-12-01T20-56-29_086-jvmRun1 surefire3333036856425714998tmp surefire_07813245218516398560tmp, java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre, sun.arch.data.model=64, user.language=zh, java.specification.vendor=Oracle Corporation, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_221, java.ext.dirs=/Users/dali/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/classes, java.awt.headless=true, java.vendor=Oracle Corporation, localRepository=/Users/dali/.m2/repository, file.separator=/, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, sun.io.unicode.encoding=UnicodeBig, sun.cpu.endian=little, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=}}, SystemEnvironmentPropertySource@873634936 {name='systemEnvironment', properties={PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/dali/Library/Android/sdk/tools:/Users/dali/maven/bin:/Users/dali/Library/Android/android-ndk-r11c:/Users/dali/Library/Android/sdk/platform-tools:/Users/dali/Qt5.13.1/5.13.1/clang_64/bin, JAVA_ARCH=x86_64, TERM=xterm-256color, LANG=zh_CN.UTF-8, ANDROID_HOME=/Users/dali/Library/Android/sdk, JAVA_MAIN_CLASS_1725=org.apache.maven.surefire.booter.ForkedBooter, NDK_HOME=/Users/dali/Library/Android/android-ndk-r11c, JAVA_MAIN_CLASS_1704=org.codehaus.plexus.classworlds.launcher.Launcher, LOGNAME=dali, XPC_SERVICE_NAME=0, PWD=/Users/dali/Workspace/push_server, TERM_PROGRAM_VERSION=433, MAVEN_CMD_LINE_ARGS= clean package, _=/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home/jre/bin/java, SHELL=/bin/zsh, TERM_PROGRAM=Apple_Terminal, MAVEN_PROJECTBASEDIR=/Users/dali/Workspace/push_server, OLDPWD=/Users/dali/Workspace/push_server, USER=dali, TMPDIR=/var/folders/tx/72ygj1dx72ldwynlrxyq1j_w0000gn/T/, SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.gxkmDAShnf/Listeners, XPC_FLAGS=0x0, TERM_SESSION_ID=FD9016A0-C1DE-4629-B0BB-1A553676B455, __CF_USER_TEXT_ENCODING=0x1F5:0x19:0x34, com.apple.java.jvmTask=CommandLine, HOME=/Users/dali, SHLVL=2}}]
  20. 2019-12-01 20:56:31.338 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'context.initializer.classes' in any property source
  21. 2019-12-01 20:56:31.341 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.application.name' in any property source
  22. 2019-12-01 20:56:31.387 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  23. 2019-12-01 20:56:31.398 INFO 1725 --- [main] c.w.push.PushApplicationTests : Starting PushApplicationTests on bogon with PID 1725 (started by dali in /Users/dali/Workspace/push_server)
  24. 2019-12-01 20:56:31.400 DEBUG 1725 --- [main] c.w.push.PushApplicationTests : Running with Spring Boot v2.0.6.RELEASE, Spring v5.0.10.RELEASE
  25. 2019-12-01 20:56:31.401 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.profiles.active' in any property source
  26. 2019-12-01 20:56:31.403 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.profiles.default' in any property source
  27. 2019-12-01 20:56:31.403 INFO 1725 --- [main] c.w.push.PushApplicationTests : No active profile set, falling back to default profiles: default
  28. 2019-12-01 20:56:31.405 DEBUG 1725 --- [main] o.s.boot.SpringApplication : Loading source class cn.wildfirechat.push.PushApplication
  29. 2019-12-01 20:56:31.445 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
  30. 2019-12-01 20:56:31.463 DEBUG 1725 --- [main] o.s.b.c.c.ConfigFileApplicationListener : Loaded config file 'file:./config/application.properties' (file:./config/application.properties)
  31. 2019-12-01 20:56:31.463 DEBUG 1725 --- [main] o.s.b.c.c.ConfigFileApplicationListener : Loaded config file 'file:/Users/dali/Workspace/push_server/target/classes/application.properties' (classpath:/application.properties)
  32. 2019-12-01 20:56:31.466 INFO 1725 --- [main] o.s.w.c.s.GenericWebApplicationContext : Refreshing org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  33. 2019-12-01 20:56:31.467 DEBUG 1725 --- [main] o.s.w.c.s.GenericWebApplicationContext : Bean factory for org.springframework.web.context.support.GenericWebApplicationContext@7139992f: org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24: defining beans [org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor,org.springframework.boot.test.mock.mockito.MockitoPostProcessor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,pushApplication]; root of factory hierarchy
  34. 2019-12-01 20:56:31.490 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Registering scope 'request' with implementation [org.springframework.web.context.request.RequestScope@1205bd62]
  35. 2019-12-01 20:56:31.492 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Registering scope 'session' with implementation [org.springframework.web.context.request.SessionScope@6337c201]
  36. 2019-12-01 20:56:31.493 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Registering scope 'application' with implementation [org.springframework.web.context.support.ServletContextScope@1d483de4]
  37. 2019-12-01 20:56:31.507 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
  38. 2019-12-01 20:56:31.509 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
  39. 2019-12-01 20:56:31.520 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
  40. 2019-12-01 20:56:31.532 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  41. 2019-12-01 20:56:31.533 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  42. 2019-12-01 20:56:31.533 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' to allow for resolving potential circular references
  43. 2019-12-01 20:56:31.537 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  44. 2019-12-01 20:56:31.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
  45. 2019-12-01 20:56:31.629 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
  46. 2019-12-01 20:56:31.632 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Resolved classpath location [cn/wildfirechat/push/] to resources [URL [file:/Users/dali/Workspace/push_server/target/test-classes/cn/wildfirechat/push/], URL [file:/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/]]
  47. 2019-12-01 20:56:31.633 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Looking for matching resources in directory tree [/Users/dali/Workspace/push_server/target/test-classes/cn/wildfirechat/push]
  48. 2019-12-01 20:56:31.634 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/test-classes/cn/wildfirechat/push] for files matching pattern [/Users/dali/Workspace/push_server/target/test-classes/cn/wildfirechat/push/**/*.class]
  49. 2019-12-01 20:56:31.634 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Looking for matching resources in directory tree [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push]
  50. 2019-12-01 20:56:31.635 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  51. 2019-12-01 20:56:31.636 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  52. 2019-12-01 20:56:31.636 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/hms] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  53. 2019-12-01 20:56:31.637 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/meizu] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  54. 2019-12-01 20:56:31.638 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/xiaomi] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  55. 2019-12-01 20:56:31.639 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Searching directory [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios] for files matching pattern [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/**/*.class]
  56. 2019-12-01 20:56:31.640 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Resolved location pattern [classpath*:cn/wildfirechat/push/**/*.class] to resources [file [/Users/dali/Workspace/push_server/target/test-classes/cn/wildfirechat/push/PushApplicationTests.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/PushApplication.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/PushController.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/PushMessage.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/PushMessageType.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/AndroidPushService.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/AndroidPushServiceImpl.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/AndroidPushType.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/hms/HMSConfig.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/hms/HMSPush.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/meizu/MeiZuConfig.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/meizu/MeiZuPush.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/xiaomi/XiaomiConfig.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/xiaomi/XiaomiPush.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/ApnsConfig.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/ApnsServer$1.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/ApnsServer.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/IOSPushService.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/IOSPushServiceImpl.class], file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/IOSPushType.class]]
  57. 2019-12-01 20:56:31.642 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  58. 2019-12-01 20:56:31.650 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  59. 2019-12-01 20:56:31.651 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/PushController.class]
  60. 2019-12-01 20:56:31.652 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  61. 2019-12-01 20:56:31.653 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  62. 2019-12-01 20:56:31.654 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  63. 2019-12-01 20:56:31.656 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  64. 2019-12-01 20:56:31.656 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/AndroidPushServiceImpl.class]
  65. 2019-12-01 20:56:31.658 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  66. 2019-12-01 20:56:31.660 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  67. 2019-12-01 20:56:31.661 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/hms/HMSConfig.class]
  68. 2019-12-01 20:56:31.662 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  69. 2019-12-01 20:56:31.663 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/hms/HMSPush.class]
  70. 2019-12-01 20:56:31.664 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  71. 2019-12-01 20:56:31.664 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/meizu/MeiZuConfig.class]
  72. 2019-12-01 20:56:31.666 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  73. 2019-12-01 20:56:31.666 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/meizu/MeiZuPush.class]
  74. 2019-12-01 20:56:31.669 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  75. 2019-12-01 20:56:31.669 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/xiaomi/XiaomiConfig.class]
  76. 2019-12-01 20:56:31.672 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  77. 2019-12-01 20:56:31.673 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/android/xiaomi/XiaomiPush.class]
  78. 2019-12-01 20:56:31.675 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  79. 2019-12-01 20:56:31.675 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/ApnsConfig.class]
  80. 2019-12-01 20:56:31.676 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  81. 2019-12-01 20:56:31.702 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  82. 2019-12-01 20:56:31.702 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/ApnsServer.class]
  83. 2019-12-01 20:56:31.703 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  84. 2019-12-01 20:56:31.704 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  85. 2019-12-01 20:56:31.704 DEBUG 1725 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/dali/Workspace/push_server/target/classes/cn/wildfirechat/push/ios/IOSPushServiceImpl.class]
  86. 2019-12-01 20:56:31.705 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter'
  87. 2019-12-01 20:56:31.728 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Adding PropertySource 'URL [file:config/hms.properties]' with lowest search precedence
  88. 2019-12-01 20:56:31.737 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Adding PropertySource 'URL [file:config/meizu.properties]' with search precedence immediately higher than 'URL [file:config/hms.properties]'
  89. 2019-12-01 20:56:31.744 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Adding PropertySource 'URL [file:config/xiaomi.properties]' with search precedence immediately higher than 'URL [file:config/meizu.properties]'
  90. 2019-12-01 20:56:31.747 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Adding PropertySource 'URL [file:config/apns.properties]' with search precedence immediately higher than 'URL [file:config/xiaomi.properties]'
  91. 2019-12-01 20:56:31.758 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.boot.enableautoconfiguration' in any property source
  92. 2019-12-01 20:56:31.776 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  93. 2019-12-01 20:56:31.831 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  94. 2019-12-01 20:56:31.841 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  95. 2019-12-01 20:56:31.870 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.messages.basename' in any property source
  96. 2019-12-01 20:56:31.871 DEBUG 1725 --- [main] .i.s.PathMatchingResourcePatternResolver : Resolved classpath location [messages.properties] to resources []
  97. 2019-12-01 20:56:31.872 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  98. 2019-12-01 20:56:31.883 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  99. 2019-12-01 20:56:31.886 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  100. 2019-12-01 20:56:31.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  101. 2019-12-01 20:56:31.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  102. 2019-12-01 20:56:31.893 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  103. 2019-12-01 20:56:31.895 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  104. 2019-12-01 20:56:31.902 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  105. 2019-12-01 20:56:31.903 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  106. 2019-12-01 20:56:31.908 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  107. 2019-12-01 20:56:31.913 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  108. 2019-12-01 20:56:31.915 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  109. 2019-12-01 20:56:31.929 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  110. 2019-12-01 20:56:31.932 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  111. 2019-12-01 20:56:31.934 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  112. 2019-12-01 20:56:31.936 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  113. 2019-12-01 20:56:31.937 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  114. 2019-12-01 20:56:31.944 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  115. 2019-12-01 20:56:31.955 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  116. 2019-12-01 20:56:31.958 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  117. 2019-12-01 20:56:31.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  118. 2019-12-01 20:56:31.961 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  119. 2019-12-01 20:56:31.962 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  120. 2019-12-01 20:56:31.966 DEBUG 1725 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar!/org/apache/catalina/mbeans/mbeans-descriptors.xml
  121. 2019-12-01 20:56:31.970 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  122. 2019-12-01 20:56:31.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  123. 2019-12-01 20:56:31.975 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  124. 2019-12-01 20:56:31.976 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  125. 2019-12-01 20:56:31.988 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  126. 2019-12-01 20:56:31.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : register('-//Apache Software Foundation//DTD Model MBeans Configuration File', 'jar:file:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar!/org/apache/tomcat/util/modeler/mbeans-descriptors.dtd'
  127. 2019-12-01 20:56:31.999 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.template.provider.cache' in any property source
  128. 2019-12-01 20:56:32.001 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  129. 2019-12-01 20:56:32.006 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  130. 2019-12-01 20:56:32.010 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  131. 2019-12-01 20:56:32.028 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  132. 2019-12-01 20:56:32.045 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.resources.chain.strategy.fixed.enabled' in any property source
  133. 2019-12-01 20:56:32.046 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.resources.chain.strategy.content.enabled' in any property source
  134. 2019-12-01 20:56:32.047 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.resources.chain.enabled' in any property source
  135. 2019-12-01 20:56:32.048 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@79a3a1a4)
  136. 2019-12-01 20:56:32.049 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument()
  137. 2019-12-01 20:56:32.049 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  138. 2019-12-01 20:56:32.055 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  139. 2019-12-01 20:56:32.057 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.jmx.enabled' in PropertySource 'configurationProperties' with value of type String
  140. 2019-12-01 20:56:32.057 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  141. 2019-12-01 20:56:32.058 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors)
  142. 2019-12-01 20:56:32.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors'
  143. 2019-12-01 20:56:32.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching 'mbeans-descriptors'.
  144. 2019-12-01 20:56:32.060 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  145. 2019-12-01 20:56:32.061 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  146. )
  147. 2019-12-01 20:56:32.062 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  148. 2019-12-01 20:56:32.065 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  149. 2019-12-01 20:56:32.069 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  150. 2019-12-01 20:56:32.071 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  151. 2019-12-01 20:56:32.071 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  152. 2019-12-01 20:56:32.072 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  153. 2019-12-01 20:56:32.078 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  154. 2019-12-01 20:56:32.078 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  155. 2019-12-01 20:56:32.079 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'MBeanFactory'
  156. 2019-12-01 20:56:32.079 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=MBeanFactory)
  157. 2019-12-01 20:56:32.081 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.mbeans.MBeanFactory'
  158. 2019-12-01 20:56:32.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.mbeans.MBeanFactory)
  159. 2019-12-01 20:56:32.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Factory for MBeans and corresponding components'
  160. 2019-12-01 20:56:32.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Factory for MBeans and corresponding components)
  161. 2019-12-01 20:56:32.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  162. 2019-12-01 20:56:32.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  163. 2019-12-01 20:56:32.089 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  164. 2019-12-01 20:56:32.089 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  165. )
  166. 2019-12-01 20:56:32.090 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  167. )
  168. 2019-12-01 20:56:32.090 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  169. )
  170. 2019-12-01 20:56:32.090 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  171. )
  172. 2019-12-01 20:56:32.091 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  173. )
  174. 2019-12-01 20:56:32.091 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  175. 2019-12-01 20:56:32.091 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  176. 2019-12-01 20:56:32.092 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  177. 2019-12-01 20:56:32.092 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  178. 2019-12-01 20:56:32.093 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  179. 2019-12-01 20:56:32.094 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  180. 2019-12-01 20:56:32.094 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createAjpConnector'
  181. 2019-12-01 20:56:32.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  182. 2019-12-01 20:56:32.098 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createAjpConnector)
  183. 2019-12-01 20:56:32.101 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new AjpConnector'
  184. 2019-12-01 20:56:32.105 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new AjpConnector)
  185. 2019-12-01 20:56:32.107 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  186. 2019-12-01 20:56:32.107 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  187. 2019-12-01 20:56:32.108 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  188. 2019-12-01 20:56:32.108 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  189. 2019-12-01 20:56:32.109 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  190. 2019-12-01 20:56:32.109 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  191. )
  192. 2019-12-01 20:56:32.109 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  193. 2019-12-01 20:56:32.109 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  194. 2019-12-01 20:56:32.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  195. 2019-12-01 20:56:32.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  196. 2019-12-01 20:56:32.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  197. 2019-12-01 20:56:32.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  198. 2019-12-01 20:56:32.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  199. 2019-12-01 20:56:32.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  200. 2019-12-01 20:56:32.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  201. 2019-12-01 20:56:32.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  202. 2019-12-01 20:56:32.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  203. 2019-12-01 20:56:32.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  204. 2019-12-01 20:56:32.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  205. 2019-12-01 20:56:32.115 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  206. 2019-12-01 20:56:32.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  207. 2019-12-01 20:56:32.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  208. 2019-12-01 20:56:32.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  209. 2019-12-01 20:56:32.116 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  210. 2019-12-01 20:56:32.116 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  211. 2019-12-01 20:56:32.117 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  212. 2019-12-01 20:56:32.118 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@755af945)
  213. 2019-12-01 20:56:32.118 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  214. 2019-12-01 20:56:32.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  215. 2019-12-01 20:56:32.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  216. 2019-12-01 20:56:32.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  217. 2019-12-01 20:56:32.122 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  218. )
  219. 2019-12-01 20:56:32.122 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  220. 2019-12-01 20:56:32.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  221. 2019-12-01 20:56:32.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  222. 2019-12-01 20:56:32.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  223. 2019-12-01 20:56:32.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  224. 2019-12-01 20:56:32.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  225. 2019-12-01 20:56:32.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address'
  226. 2019-12-01 20:56:32.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address)
  227. 2019-12-01 20:56:32.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind'
  228. 2019-12-01 20:56:32.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind)
  229. 2019-12-01 20:56:32.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  230. 2019-12-01 20:56:32.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  231. 2019-12-01 20:56:32.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  232. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  233. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  234. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  235. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  236. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  237. 2019-12-01 20:56:32.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  238. 2019-12-01 20:56:32.129 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  239. 2019-12-01 20:56:32.129 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3d2485ec)
  240. 2019-12-01 20:56:32.129 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  241. 2019-12-01 20:56:32.129 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  242. 2019-12-01 20:56:32.130 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  243. 2019-12-01 20:56:32.130 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  244. 2019-12-01 20:56:32.130 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  245. )
  246. 2019-12-01 20:56:32.130 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  247. 2019-12-01 20:56:32.131 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  248. 2019-12-01 20:56:32.131 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  249. 2019-12-01 20:56:32.131 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  250. 2019-12-01 20:56:32.131 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  251. 2019-12-01 20:56:32.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  252. 2019-12-01 20:56:32.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port'
  253. 2019-12-01 20:56:32.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port)
  254. 2019-12-01 20:56:32.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on'
  255. 2019-12-01 20:56:32.124 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  256. 2019-12-01 20:56:32.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on)
  257. 2019-12-01 20:56:32.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int'
  258. 2019-12-01 20:56:32.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int)
  259. 2019-12-01 20:56:32.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  260. 2019-12-01 20:56:32.142 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  261. 2019-12-01 20:56:32.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  262. 2019-12-01 20:56:32.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  263. 2019-12-01 20:56:32.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  264. 2019-12-01 20:56:32.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  265. 2019-12-01 20:56:32.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  266. 2019-12-01 20:56:32.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  267. 2019-12-01 20:56:32.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1fec85f)
  268. 2019-12-01 20:56:32.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  269. 2019-12-01 20:56:32.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  270. 2019-12-01 20:56:32.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  271. 2019-12-01 20:56:32.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  272. 2019-12-01 20:56:32.145 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  273. )
  274. 2019-12-01 20:56:32.145 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  275. 2019-12-01 20:56:32.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  276. 2019-12-01 20:56:32.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  277. '
  278. 2019-12-01 20:56:32.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  279. 2019-12-01 20:56:32.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  280. 2019-12-01 20:56:32.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  281. 2019-12-01 20:56:32.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  282. 2019-12-01 20:56:32.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6c48c2)
  283. 2019-12-01 20:56:32.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  284. 2019-12-01 20:56:32.153 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  285. 2019-12-01 20:56:32.153 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  286. 2019-12-01 20:56:32.153 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  287. 2019-12-01 20:56:32.154 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  288. )
  289. 2019-12-01 20:56:32.154 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  290. 2019-12-01 20:56:32.156 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  291. 2019-12-01 20:56:32.158 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  292. 2019-12-01 20:56:32.160 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  293. 2019-12-01 20:56:32.161 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  294. 2019-12-01 20:56:32.162 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  295. 2019-12-01 20:56:32.163 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  296. 2019-12-01 20:56:32.165 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  297. 2019-12-01 20:56:32.168 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  298. 2019-12-01 20:56:32.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  299. 2019-12-01 20:56:32.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  300. 2019-12-01 20:56:32.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  301. 2019-12-01 20:56:32.169 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  302. 2019-12-01 20:56:32.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  303. 2019-12-01 20:56:32.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  304. 2019-12-01 20:56:32.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createDataSourceRealm'
  305. 2019-12-01 20:56:32.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createDataSourceRealm)
  306. 2019-12-01 20:56:32.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new DataSource Realm'
  307. 2019-12-01 20:56:32.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new DataSource Realm)
  308. 2019-12-01 20:56:32.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  309. 2019-12-01 20:56:32.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  310. 2019-12-01 20:56:32.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  311. 2019-12-01 20:56:32.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  312. 2019-12-01 20:56:32.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  313. 2019-12-01 20:56:32.175 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  314. )
  315. 2019-12-01 20:56:32.175 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  316. 2019-12-01 20:56:32.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  317. 2019-12-01 20:56:32.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  318. 2019-12-01 20:56:32.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  319. 2019-12-01 20:56:32.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  320. 2019-12-01 20:56:32.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  321. 2019-12-01 20:56:32.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  322. 2019-12-01 20:56:32.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  323. 2019-12-01 20:56:32.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  324. 2019-12-01 20:56:32.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  325. 2019-12-01 20:56:32.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  326. 2019-12-01 20:56:32.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  327. 2019-12-01 20:56:32.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  328. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  329. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  330. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  331. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  332. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  333. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  334. 2019-12-01 20:56:32.179 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  335. 2019-12-01 20:56:32.180 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7c89d346)
  336. 2019-12-01 20:56:32.180 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  337. 2019-12-01 20:56:32.180 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  338. 2019-12-01 20:56:32.180 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  339. 2019-12-01 20:56:32.181 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  340. 2019-12-01 20:56:32.181 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  341. )
  342. 2019-12-01 20:56:32.186 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  343. 2019-12-01 20:56:32.192 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  344. 2019-12-01 20:56:32.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  345. 2019-12-01 20:56:32.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  346. 2019-12-01 20:56:32.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  347. 2019-12-01 20:56:32.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  348. 2019-12-01 20:56:32.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  349. 2019-12-01 20:56:32.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'dataSourceName'
  350. 2019-12-01 20:56:32.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=dataSourceName)
  351. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The JNDI named JDBC DataSource'
  352. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The JNDI named JDBC DataSource)
  353. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  354. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  355. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  356. 2019-12-01 20:56:32.195 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  357. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  358. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  359. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  360. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  361. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  362. 2019-12-01 20:56:32.196 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  363. 2019-12-01 20:56:32.197 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@208123f5)
  364. 2019-12-01 20:56:32.197 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  365. 2019-12-01 20:56:32.197 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  366. 2019-12-01 20:56:32.197 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  367. 2019-12-01 20:56:32.197 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  368. 2019-12-01 20:56:32.203 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  369. 2019-12-01 20:56:32.204 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  370. 2019-12-01 20:56:32.206 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  371. )
  372. 2019-12-01 20:56:32.207 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  373. 2019-12-01 20:56:32.208 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  374. 2019-12-01 20:56:32.208 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  375. 2019-12-01 20:56:32.209 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  376. 2019-12-01 20:56:32.211 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  377. 2019-12-01 20:56:32.211 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  378. 2019-12-01 20:56:32.211 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  379. 2019-12-01 20:56:32.212 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  380. 2019-12-01 20:56:32.212 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'roleNameCol'
  381. 2019-12-01 20:56:32.212 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=roleNameCol)
  382. 2019-12-01 20:56:32.212 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user role table that names a role'
  383. 2019-12-01 20:56:32.212 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user role table that names a role)
  384. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  385. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  386. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  387. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  388. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  389. 2019-12-01 20:56:32.213 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  390. 2019-12-01 20:56:32.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  391. 2019-12-01 20:56:32.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  392. 2019-12-01 20:56:32.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  393. 2019-12-01 20:56:32.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  394. 2019-12-01 20:56:32.210 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  395. 2019-12-01 20:56:32.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@57b1706a)
  396. 2019-12-01 20:56:32.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  397. 2019-12-01 20:56:32.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  398. 2019-12-01 20:56:32.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  399. 2019-12-01 20:56:32.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  400. 2019-12-01 20:56:32.215 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  401. )
  402. 2019-12-01 20:56:32.217 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  403. 2019-12-01 20:56:32.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  404. 2019-12-01 20:56:32.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  405. 2019-12-01 20:56:32.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  406. 2019-12-01 20:56:32.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  407. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  408. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userCredCol'
  409. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userCredCol)
  410. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user table that holds the user's credentials'
  411. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user table that holds the user's credentials)
  412. 2019-12-01 20:56:32.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  413. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  414. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  415. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  416. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  417. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  418. 2019-12-01 20:56:32.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  419. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  420. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  421. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  422. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1b01622)
  423. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  424. 2019-12-01 20:56:32.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  425. 2019-12-01 20:56:32.221 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  426. 2019-12-01 20:56:32.225 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  427. 2019-12-01 20:56:32.225 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  428. )
  429. 2019-12-01 20:56:32.224 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  430. 2019-12-01 20:56:32.230 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  431. 2019-12-01 20:56:32.225 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  432. 2019-12-01 20:56:32.235 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  433. 2019-12-01 20:56:32.235 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  434. 2019-12-01 20:56:32.236 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  435. 2019-12-01 20:56:32.237 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  436. 2019-12-01 20:56:32.239 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  437. 2019-12-01 20:56:32.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  438. 2019-12-01 20:56:32.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  439. 2019-12-01 20:56:32.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  440. 2019-12-01 20:56:32.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  441. 2019-12-01 20:56:32.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userNameCol'
  442. 2019-12-01 20:56:32.242 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  443. 2019-12-01 20:56:32.244 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  444. 2019-12-01 20:56:32.245 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userNameCol)
  445. 2019-12-01 20:56:32.246 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user table that holds the user's username'
  446. 2019-12-01 20:56:32.246 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user table that holds the user's username)
  447. 2019-12-01 20:56:32.246 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  448. 2019-12-01 20:56:32.246 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  449. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  450. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  451. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  452. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  453. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  454. 2019-12-01 20:56:32.247 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  455. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  456. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  457. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3311e6b1)
  458. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  459. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  460. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  461. 2019-12-01 20:56:32.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  462. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  463. )
  464. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  465. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  466. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  467. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  468. 2019-12-01 20:56:32.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  469. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  470. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userRoleTable'
  471. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userRoleTable)
  472. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The table that holds the relation between user's and roles'
  473. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The table that holds the relation between user's and roles)
  474. 2019-12-01 20:56:32.251 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  475. 2019-12-01 20:56:32.255 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  476. 2019-12-01 20:56:32.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  477. 2019-12-01 20:56:32.262 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  478. 2019-12-01 20:56:32.262 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  479. 2019-12-01 20:56:32.262 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  480. 2019-12-01 20:56:32.264 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  481. 2019-12-01 20:56:32.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  482. 2019-12-01 20:56:32.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  483. 2019-12-01 20:56:32.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  484. 2019-12-01 20:56:32.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  485. 2019-12-01 20:56:32.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  486. 2019-12-01 20:56:32.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  487. 2019-12-01 20:56:32.266 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  488. 2019-12-01 20:56:32.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1aa6e5ad)
  489. 2019-12-01 20:56:32.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  490. 2019-12-01 20:56:32.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  491. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  492. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  493. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  494. )
  495. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  496. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  497. 2019-12-01 20:56:32.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  498. 2019-12-01 20:56:32.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  499. 2019-12-01 20:56:32.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  500. 2019-12-01 20:56:32.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  501. 2019-12-01 20:56:32.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userTable'
  502. 2019-12-01 20:56:32.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userTable)
  503. 2019-12-01 20:56:32.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The table that holds user data'
  504. 2019-12-01 20:56:32.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The table that holds user data)
  505. 2019-12-01 20:56:32.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  506. 2019-12-01 20:56:32.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  507. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  508. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  509. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  510. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  511. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  512. 2019-12-01 20:56:32.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  513. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  514. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  515. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@46c8e4b3)
  516. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  517. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  518. 2019-12-01 20:56:32.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  519. 2019-12-01 20:56:32.273 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  520. 2019-12-01 20:56:32.274 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  521. )
  522. 2019-12-01 20:56:32.275 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  523. 2019-12-01 20:56:32.275 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  524. 2019-12-01 20:56:32.275 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  525. '
  526. 2019-12-01 20:56:32.275 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  527. 2019-12-01 20:56:32.276 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  528. 2019-12-01 20:56:32.276 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  529. 2019-12-01 20:56:32.276 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  530. 2019-12-01 20:56:32.276 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4748fb4e)
  531. 2019-12-01 20:56:32.276 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  532. 2019-12-01 20:56:32.277 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  533. 2019-12-01 20:56:32.277 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  534. 2019-12-01 20:56:32.277 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  535. 2019-12-01 20:56:32.277 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  536. )
  537. 2019-12-01 20:56:32.277 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  538. 2019-12-01 20:56:32.279 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  539. 2019-12-01 20:56:32.280 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  540. 2019-12-01 20:56:32.280 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  541. 2019-12-01 20:56:32.282 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  542. 2019-12-01 20:56:32.282 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  543. 2019-12-01 20:56:32.283 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  544. 2019-12-01 20:56:32.286 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  545. 2019-12-01 20:56:32.286 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  546. 2019-12-01 20:56:32.278 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  547. 2019-12-01 20:56:32.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  548. 2019-12-01 20:56:32.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  549. 2019-12-01 20:56:32.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  550. 2019-12-01 20:56:32.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  551. 2019-12-01 20:56:32.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createHttpConnector'
  552. 2019-12-01 20:56:32.290 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  553. 2019-12-01 20:56:32.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createHttpConnector)
  554. 2019-12-01 20:56:32.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new HttpConnector'
  555. 2019-12-01 20:56:32.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new HttpConnector)
  556. 2019-12-01 20:56:32.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  557. 2019-12-01 20:56:32.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  558. 2019-12-01 20:56:32.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  559. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  560. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  561. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  562. )
  563. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  564. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  565. 2019-12-01 20:56:32.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  566. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  567. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  568. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  569. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  570. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  571. 2019-12-01 20:56:32.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  572. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  573. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  574. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  575. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  576. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  577. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  578. 2019-12-01 20:56:32.294 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  579. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  580. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  581. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  582. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  583. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7b50b978)
  584. 2019-12-01 20:56:32.295 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  585. 2019-12-01 20:56:32.296 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  586. 2019-12-01 20:56:32.296 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  587. 2019-12-01 20:56:32.296 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  588. 2019-12-01 20:56:32.296 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  589. )
  590. 2019-12-01 20:56:32.296 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  591. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  592. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  593. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  594. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  595. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  596. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address'
  597. 2019-12-01 20:56:32.297 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address)
  598. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind'
  599. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind)
  600. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  601. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  602. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  603. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  604. 2019-12-01 20:56:32.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  605. 2019-12-01 20:56:32.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  606. 2019-12-01 20:56:32.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  607. 2019-12-01 20:56:32.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  608. 2019-12-01 20:56:32.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  609. 2019-12-01 20:56:32.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  610. 2019-12-01 20:56:32.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5676b032)
  611. 2019-12-01 20:56:32.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  612. 2019-12-01 20:56:32.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  613. 2019-12-01 20:56:32.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  614. 2019-12-01 20:56:32.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  615. 2019-12-01 20:56:32.303 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  616. )
  617. 2019-12-01 20:56:32.303 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  618. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  619. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  620. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  621. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  622. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  623. 2019-12-01 20:56:32.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port'
  624. 2019-12-01 20:56:32.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port)
  625. 2019-12-01 20:56:32.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on'
  626. 2019-12-01 20:56:32.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on)
  627. 2019-12-01 20:56:32.307 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
  628. 2019-12-01 20:56:32.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int'
  629. 2019-12-01 20:56:32.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int)
  630. 2019-12-01 20:56:32.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  631. 2019-12-01 20:56:32.308 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  632. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  633. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  634. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  635. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  636. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  637. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  638. 2019-12-01 20:56:32.309 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@29edc0e5)
  639. 2019-12-01 20:56:32.310 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  640. 2019-12-01 20:56:32.310 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  641. 2019-12-01 20:56:32.310 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  642. 2019-12-01 20:56:32.310 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  643. 2019-12-01 20:56:32.310 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  644. )
  645. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  646. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  647. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  648. '
  649. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  650. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  651. 2019-12-01 20:56:32.311 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  652. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  653. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4a7902ca)
  654. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  655. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  656. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  657. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  658. 2019-12-01 20:56:32.312 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  659. )
  660. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  661. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  662. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  663. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  664. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  665. 2019-12-01 20:56:32.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  666. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createHttpsConnector'
  667. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createHttpsConnector)
  668. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new HttpsConnector'
  669. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new HttpsConnector)
  670. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  671. 2019-12-01 20:56:32.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  672. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  673. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  674. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  675. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  676. )
  677. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  678. 2019-12-01 20:56:32.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  679. 2019-12-01 20:56:32.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  680. 2019-12-01 20:56:32.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  681. 2019-12-01 20:56:32.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  682. 2019-12-01 20:56:32.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  683. 2019-12-01 20:56:32.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  684. 2019-12-01 20:56:32.321 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  685. 2019-12-01 20:56:32.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  686. 2019-12-01 20:56:32.322 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  687. 2019-12-01 20:56:32.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  688. 2019-12-01 20:56:32.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  689. 2019-12-01 20:56:32.323 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  690. 2019-12-01 20:56:32.323 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  691. 2019-12-01 20:56:32.323 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  692. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  693. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  694. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  695. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  696. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  697. 2019-12-01 20:56:32.324 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  698. 2019-12-01 20:56:32.325 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  699. 2019-12-01 20:56:32.325 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4c3c7b15)
  700. 2019-12-01 20:56:32.325 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  701. 2019-12-01 20:56:32.325 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  702. 2019-12-01 20:56:32.325 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  703. 2019-12-01 20:56:32.326 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  704. 2019-12-01 20:56:32.326 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  705. )
  706. 2019-12-01 20:56:32.326 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  707. 2019-12-01 20:56:32.326 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  708. 2019-12-01 20:56:32.327 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  709. 2019-12-01 20:56:32.332 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  710. 2019-12-01 20:56:32.332 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  711. 2019-12-01 20:56:32.332 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  712. 2019-12-01 20:56:32.333 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address'
  713. 2019-12-01 20:56:32.333 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address)
  714. 2019-12-01 20:56:32.333 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind'
  715. 2019-12-01 20:56:32.334 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind)
  716. 2019-12-01 20:56:32.334 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  717. 2019-12-01 20:56:32.334 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  718. 2019-12-01 20:56:32.334 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  719. 2019-12-01 20:56:32.335 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry' to allow for resolving potential circular references
  720. 2019-12-01 20:56:32.335 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  721. 2019-12-01 20:56:32.335 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  722. 2019-12-01 20:56:32.335 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  723. 2019-12-01 20:56:32.335 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  724. 2019-12-01 20:56:32.335 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  725. 2019-12-01 20:56:32.335 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  726. 2019-12-01 20:56:32.336 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  727. 2019-12-01 20:56:32.336 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  728. 2019-12-01 20:56:32.336 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5ae23a07)
  729. 2019-12-01 20:56:32.336 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  730. 2019-12-01 20:56:32.336 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  731. 2019-12-01 20:56:32.337 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  732. 2019-12-01 20:56:32.337 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  733. 2019-12-01 20:56:32.337 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  734. )
  735. 2019-12-01 20:56:32.337 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  736. 2019-12-01 20:56:32.337 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  737. 2019-12-01 20:56:32.338 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  738. 2019-12-01 20:56:32.338 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  739. 2019-12-01 20:56:32.339 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  740. 2019-12-01 20:56:32.339 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  741. 2019-12-01 20:56:32.339 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port'
  742. 2019-12-01 20:56:32.339 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port)
  743. 2019-12-01 20:56:32.339 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on'
  744. 2019-12-01 20:56:32.340 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on)
  745. 2019-12-01 20:56:32.340 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int'
  746. 2019-12-01 20:56:32.341 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int)
  747. 2019-12-01 20:56:32.342 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  748. 2019-12-01 20:56:32.343 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  749. 2019-12-01 20:56:32.343 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  750. 2019-12-01 20:56:32.343 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  751. 2019-12-01 20:56:32.343 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  752. 2019-12-01 20:56:32.343 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  753. 2019-12-01 20:56:32.344 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  754. 2019-12-01 20:56:32.344 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  755. 2019-12-01 20:56:32.344 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@30e93945)
  756. 2019-12-01 20:56:32.344 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  757. 2019-12-01 20:56:32.344 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  758. 2019-12-01 20:56:32.345 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  759. 2019-12-01 20:56:32.346 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  760. 2019-12-01 20:56:32.346 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration.propertySourcesPlaceholderConfigurer()
  761. 2019-12-01 20:56:32.346 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  762. 2019-12-01 20:56:32.346 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  763. )
  764. 2019-12-01 20:56:32.347 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  765. 2019-12-01 20:56:32.347 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  766. 2019-12-01 20:56:32.347 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  767. '
  768. 2019-12-01 20:56:32.347 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  769. 2019-12-01 20:56:32.347 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  770. 2019-12-01 20:56:32.347 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  771. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  772. 2019-12-01 20:56:32.348 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  773. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  774. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  775. 2019-12-01 20:56:32.348 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
  776. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1f21d6fa)
  777. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  778. 2019-12-01 20:56:32.348 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  779. 2019-12-01 20:56:32.348 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  780. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  781. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  782. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  783. )
  784. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  785. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  786. 2019-12-01 20:56:32.349 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  787. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  788. 2019-12-01 20:56:32.350 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration.websocketServletWebServerCustomizer()
  789. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  790. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  791. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createJDBCRealm'
  792. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createJDBCRealm)
  793. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new JDBC Realm'
  794. 2019-12-01 20:56:32.350 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new JDBC Realm)
  795. 2019-12-01 20:56:32.351 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  796. 2019-12-01 20:56:32.351 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
  797. 2019-12-01 20:56:32.351 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  798. 2019-12-01 20:56:32.351 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  799. 2019-12-01 20:56:32.351 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  800. 2019-12-01 20:56:32.351 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  801. 2019-12-01 20:56:32.351 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  802. 2019-12-01 20:56:32.351 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  803. 2019-12-01 20:56:32.352 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  804. )
  805. 2019-12-01 20:56:32.352 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  806. 2019-12-01 20:56:32.352 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  807. 2019-12-01 20:56:32.352 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  808. 2019-12-01 20:56:32.352 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  809. 2019-12-01 20:56:32.352 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  810. 2019-12-01 20:56:32.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  811. 2019-12-01 20:56:32.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  812. 2019-12-01 20:56:32.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  813. 2019-12-01 20:56:32.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  814. 2019-12-01 20:56:32.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  815. 2019-12-01 20:56:32.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  816. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  817. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  818. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  819. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  820. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  821. 2019-12-01 20:56:32.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  822. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  823. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  824. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  825. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  826. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  827. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@10e729cc)
  828. 2019-12-01 20:56:32.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  829. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  830. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  831. 2019-12-01 20:56:32.362 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  832. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  833. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  834. )
  835. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  836. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  837. 2019-12-01 20:56:32.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  838. '
  839. 2019-12-01 20:56:32.362 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
  840. 2019-12-01 20:56:32.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  841. 2019-12-01 20:56:32.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  842. 2019-12-01 20:56:32.363 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory()
  843. 2019-12-01 20:56:32.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  844. 2019-12-01 20:56:32.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  845. 2019-12-01 20:56:32.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@69bd1984)
  846. 2019-12-01 20:56:32.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  847. 2019-12-01 20:56:32.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  848. 2019-12-01 20:56:32.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  849. 2019-12-01 20:56:32.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  850. 2019-12-01 20:56:32.365 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  851. )
  852. 2019-12-01 20:56:32.365 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  853. 2019-12-01 20:56:32.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  854. 2019-12-01 20:56:32.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  855. 2019-12-01 20:56:32.366 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  856. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  857. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  858. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  859. 2019-12-01 20:56:32.366 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.servletWebServerFactoryCustomizer()
  860. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createJNDIRealm'
  861. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createJNDIRealm)
  862. 2019-12-01 20:56:32.366 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  863. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new JNDI Realm'
  864. 2019-12-01 20:56:32.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new JNDI Realm)
  865. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  866. 2019-12-01 20:56:32.367 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.tomcatServletWebServerFactoryCustomizer()
  867. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  868. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  869. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  870. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  871. 2019-12-01 20:56:32.367 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  872. )
  873. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  874. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  875. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  876. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  877. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  878. 2019-12-01 20:56:32.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  879. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  880. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  881. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  882. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  883. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  884. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  885. 2019-12-01 20:56:32.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  886. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  887. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  888. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  889. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  890. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  891. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  892. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  893. 2019-12-01 20:56:32.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@12ac1909)
  894. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  895. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  896. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  897. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  898. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  899. )
  900. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  901. 2019-12-01 20:56:32.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  902. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  903. '
  904. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  905. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  906. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  907. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  908. 2019-12-01 20:56:32.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3ab9ba0)
  909. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  910. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  911. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  912. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  913. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  914. )
  915. 2019-12-01 20:56:32.373 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  916. 2019-12-01 20:56:32.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  917. 2019-12-01 20:56:32.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  918. 2019-12-01 20:56:32.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  919. 2019-12-01 20:56:32.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  920. 2019-12-01 20:56:32.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  921. 2019-12-01 20:56:32.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createMemoryRealm'
  922. 2019-12-01 20:56:32.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createMemoryRealm)
  923. 2019-12-01 20:56:32.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Memory Realm'
  924. 2019-12-01 20:56:32.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Memory Realm)
  925. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  926. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  927. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  928. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  929. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  930. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  931. )
  932. 2019-12-01 20:56:32.382 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  933. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  934. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  935. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  936. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  937. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  938. 2019-12-01 20:56:32.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  939. 2019-12-01 20:56:32.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  940. 2019-12-01 20:56:32.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  941. 2019-12-01 20:56:32.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  942. 2019-12-01 20:56:32.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  943. 2019-12-01 20:56:32.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  944. 2019-12-01 20:56:32.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  945. 2019-12-01 20:56:32.385 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  946. 2019-12-01 20:56:32.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  947. 2019-12-01 20:56:32.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  948. 2019-12-01 20:56:32.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  949. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  950. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  951. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  952. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2a2b7b50)
  953. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  954. 2019-12-01 20:56:32.386 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  955. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  956. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  957. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  958. )
  959. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  960. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  961. 2019-12-01 20:56:32.387 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  962. '
  963. 2019-12-01 20:56:32.388 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  964. 2019-12-01 20:56:32.388 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  965. 2019-12-01 20:56:32.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  966. 2019-12-01 20:56:32.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  967. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2bdb36a8)
  968. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  969. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  970. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  971. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  972. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  973. )
  974. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  975. 2019-12-01 20:56:32.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  976. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  977. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  978. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  979. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  980. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createUserDatabaseRealm'
  981. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createUserDatabaseRealm)
  982. 2019-12-01 20:56:32.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new UserDatabaseRealm'
  983. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new UserDatabaseRealm)
  984. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  985. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  986. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  987. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  988. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  989. 2019-12-01 20:56:32.400 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  990. )
  991. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  992. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  993. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  994. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  995. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  996. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  997. 2019-12-01 20:56:32.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  998. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  999. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1000. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1001. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1002. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1003. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1004. 2019-12-01 20:56:32.402 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1005. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1006. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1007. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1008. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1009. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1010. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1011. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@594d168b)
  1012. 2019-12-01 20:56:32.403 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1013. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1014. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1015. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1016. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1017. )
  1018. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1019. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1020. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1021. 2019-12-01 20:56:32.404 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1022. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1023. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1024. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName'
  1025. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName)
  1026. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Global JNDI resource name of the associated'
  1027. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Global JNDI resource name of the associated)
  1028. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1029. 2019-12-01 20:56:32.405 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1030. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1031. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1032. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1033. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1034. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1035. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1036. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1037. 2019-12-01 20:56:32.406 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1038. 2019-12-01 20:56:32.407 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@664f099)
  1039. 2019-12-01 20:56:32.407 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1040. 2019-12-01 20:56:32.407 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1041. 2019-12-01 20:56:32.408 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1042. 2019-12-01 20:56:32.408 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1043. 2019-12-01 20:56:32.408 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1044. 2019-12-01 20:56:32.409 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1045. 2019-12-01 20:56:32.409 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1046. 2019-12-01 20:56:32.410 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1047. 2019-12-01 20:56:32.411 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
  1048. 2019-12-01 20:56:32.411 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration.dispatcherServlet()
  1049. 2019-12-01 20:56:32.412 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1050. 2019-12-01 20:56:32.413 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1051. 2019-12-01 20:56:32.414 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
  1052. 2019-12-01 20:56:32.414 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1053. 2019-12-01 20:56:32.415 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1054. 2019-12-01 20:56:32.416 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration.dispatcherServletRegistration()
  1055. 2019-12-01 20:56:32.416 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
  1056. 2019-12-01 20:56:32.417 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1057. 2019-12-01 20:56:32.407 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1058. 2019-12-01 20:56:32.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1059. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1060. )
  1061. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1062. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1063. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1064. '
  1065. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1066. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1067. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1068. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1069. 2019-12-01 20:56:32.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@77e4fafe)
  1070. 2019-12-01 20:56:32.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1071. 2019-12-01 20:56:32.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1072. 2019-12-01 20:56:32.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1073. 2019-12-01 20:56:32.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1074. 2019-12-01 20:56:32.420 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1075. )
  1076. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1077. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1078. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1079. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1080. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1081. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1082. 2019-12-01 20:56:32.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardContext'
  1083. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardContext)
  1084. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardContext'
  1085. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardContext)
  1086. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1087. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1088. 2019-12-01 20:56:32.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1089. 2019-12-01 20:56:32.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1090. 2019-12-01 20:56:32.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1091. 2019-12-01 20:56:32.425 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1092. )
  1093. 2019-12-01 20:56:32.422 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1094. 2019-12-01 20:56:32.425 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1095. 2019-12-01 20:56:32.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1096. 2019-12-01 20:56:32.426 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
  1097. 2019-12-01 20:56:32.426 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1098. 2019-12-01 20:56:32.427 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1099. 2019-12-01 20:56:32.427 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1100. 2019-12-01 20:56:32.427 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1101. 2019-12-01 20:56:32.427 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1102. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1103. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1104. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1105. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1106. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1107. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1108. 2019-12-01 20:56:32.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1109. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1110. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1111. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1112. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1113. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1114. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1115. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1116. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5f8ecdc)
  1117. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1118. 2019-12-01 20:56:32.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1119. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1120. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1121. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1122. )
  1123. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1124. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1125. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1126. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1127. 2019-12-01 20:56:32.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1128. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1129. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'path'
  1130. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=path)
  1131. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The context path for this Context'
  1132. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The context path for this Context)
  1133. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1134. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1135. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1136. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1137. 2019-12-01 20:56:32.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1138. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1139. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1140. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1141. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1142. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1143. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@34305ba6)
  1144. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1145. 2019-12-01 20:56:32.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1146. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1147. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1148. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1149. )
  1150. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1151. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1152. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1153. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1154. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1155. 2019-12-01 20:56:32.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1156. 2019-12-01 20:56:32.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'docBase'
  1157. 2019-12-01 20:56:32.439 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1158. 2019-12-01 20:56:32.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=docBase)
  1159. 2019-12-01 20:56:32.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Document base directory (or WAR) for this Context'
  1160. 2019-12-01 20:56:32.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Document base directory (or WAR) for this Context)
  1161. 2019-12-01 20:56:32.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1162. 2019-12-01 20:56:32.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1163. 2019-12-01 20:56:32.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1164. 2019-12-01 20:56:32.439 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration.defaultValidator()
  1165. 2019-12-01 20:56:32.440 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1166. 2019-12-01 20:56:32.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1167. 2019-12-01 20:56:32.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1168. 2019-12-01 20:56:32.449 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1169. 2019-12-01 20:56:32.449 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1170. 2019-12-01 20:56:32.449 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1171. 2019-12-01 20:56:32.450 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1172. 2019-12-01 20:56:32.450 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@15f18581)
  1173. 2019-12-01 20:56:32.450 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1174. 2019-12-01 20:56:32.450 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1175. 2019-12-01 20:56:32.450 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1176. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1177. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1178. )
  1179. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1180. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1181. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1182. '
  1183. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1184. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1185. 2019-12-01 20:56:32.451 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1186. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1187. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4592becb)
  1188. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1189. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1190. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1191. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1192. 2019-12-01 20:56:32.452 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1193. )
  1194. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1195. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1196. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1197. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1198. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1199. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1200. 2019-12-01 20:56:32.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardServiceEngine'
  1201. 2019-12-01 20:56:32.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardServiceEngine)
  1202. 2019-12-01 20:56:32.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardService and StandardEngine'
  1203. 2019-12-01 20:56:32.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardService and StandardEngine)
  1204. 2019-12-01 20:56:32.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1205. 2019-12-01 20:56:32.456 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1206. 2019-12-01 20:56:32.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1207. 2019-12-01 20:56:32.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1208. 2019-12-01 20:56:32.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1209. 2019-12-01 20:56:32.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1210. 2019-12-01 20:56:32.459 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1211. )
  1212. 2019-12-01 20:56:32.461 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1213. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1214. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1215. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1216. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1217. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1218. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'domain'
  1219. 2019-12-01 20:56:32.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=domain)
  1220. 2019-12-01 20:56:32.462 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1221. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Domain used for MBeans associated with the new Service'
  1222. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Domain used for MBeans associated with the new Service)
  1223. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1224. 2019-12-01 20:56:32.463 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration.methodValidationPostProcessor()
  1225. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1226. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1227. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1228. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1229. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1230. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1231. 2019-12-01 20:56:32.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1232. 2019-12-01 20:56:32.464 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1233. 2019-12-01 20:56:32.464 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1234. 2019-12-01 20:56:32.464 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7ce24a9)
  1235. 2019-12-01 20:56:32.464 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1236. 2019-12-01 20:56:32.464 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1237. 2019-12-01 20:56:32.465 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1238. 2019-12-01 20:56:32.466 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.template.provider.cache' in any property source
  1239. 2019-12-01 20:56:32.468 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1240. 2019-12-01 20:56:32.469 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  1241. 2019-12-01 20:56:32.469 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1242. 2019-12-01 20:56:32.470 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.error()
  1243. 2019-12-01 20:56:32.472 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1244. 2019-12-01 20:56:32.474 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1245. 2019-12-01 20:56:32.475 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.beanNameViewResolver()
  1246. 2019-12-01 20:56:32.475 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
  1247. 2019-12-01 20:56:32.475 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1248. 2019-12-01 20:56:32.477 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1249. 2019-12-01 20:56:32.477 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1250. 2019-12-01 20:56:32.478 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1251. 2019-12-01 20:56:32.478 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1252. 2019-12-01 20:56:32.479 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1253. 2019-12-01 20:56:32.479 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1254. 2019-12-01 20:56:32.479 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1255. 2019-12-01 20:56:32.480 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration.conventionErrorViewResolver()
  1256. 2019-12-01 20:56:32.481 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  1257. 2019-12-01 20:56:32.482 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1258. 2019-12-01 20:56:32.482 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1259. 2019-12-01 20:56:32.482 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1260. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1261. )
  1262. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1263. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1264. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1265. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1266. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1267. 2019-12-01 20:56:32.483 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1268. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'defaultHost'
  1269. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=defaultHost)
  1270. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Default host name for the new Engine'
  1271. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Default host name for the new Engine)
  1272. 2019-12-01 20:56:32.484 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1273. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1274. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1275. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1276. 2019-12-01 20:56:32.484 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1277. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1278. 2019-12-01 20:56:32.485 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.errorAttributes()
  1279. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1280. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1281. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1282. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1283. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1284. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3195b29d)
  1285. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1286. 2019-12-01 20:56:32.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1287. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1288. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1289. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1290. )
  1291. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1292. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1293. 2019-12-01 20:56:32.486 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1294. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1295. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1296. 2019-12-01 20:56:32.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1297. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1298. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'baseDir'
  1299. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=baseDir)
  1300. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Base directory value for the new Engine'
  1301. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Base directory value for the new Engine)
  1302. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1303. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1304. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1305. 2019-12-01 20:56:32.487 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1306. 2019-12-01 20:56:32.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1307. 2019-12-01 20:56:32.491 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1308. 2019-12-01 20:56:32.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1309. 2019-12-01 20:56:32.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1310. 2019-12-01 20:56:32.492 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.basicErrorController()
  1311. 2019-12-01 20:56:32.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1312. 2019-12-01 20:56:32.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1313. 2019-12-01 20:56:32.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1314. 2019-12-01 20:56:32.493 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.errorPageCustomizer()
  1315. 2019-12-01 20:56:32.494 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.preserveErrorControllerTargetClassPostProcessor()
  1316. 2019-12-01 20:56:32.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@28d1e4a3)
  1317. 2019-12-01 20:56:32.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1318. 2019-12-01 20:56:32.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1319. 2019-12-01 20:56:32.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1320. 2019-12-01 20:56:32.494 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1321. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1322. 2019-12-01 20:56:32.495 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1323. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1324. )
  1325. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1326. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1327. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1328. '
  1329. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1330. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1331. 2019-12-01 20:56:32.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1332. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1333. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@78657394)
  1334. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1335. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1336. 2019-12-01 20:56:32.496 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1337. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1338. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1339. 2019-12-01 20:56:32.496 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1340. )
  1341. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1342. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1343. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1344. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1345. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1346. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1347. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardHost'
  1348. 2019-12-01 20:56:32.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardHost)
  1349. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardHost'
  1350. 2019-12-01 20:56:32.498 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1351. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardHost)
  1352. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1353. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1354. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1355. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1356. 2019-12-01 20:56:32.498 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1357. 2019-12-01 20:56:32.498 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1358. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1359. )
  1360. 2019-12-01 20:56:32.499 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  1361. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1362. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1363. 2019-12-01 20:56:32.499 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration.faviconHandlerMapping()
  1364. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1365. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1366. 2019-12-01 20:56:32.499 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration.faviconRequestHandler()
  1367. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1368. 2019-12-01 20:56:32.499 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  1369. 2019-12-01 20:56:32.499 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1370. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1371. 2019-12-01 20:56:32.500 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.requestMappingHandlerAdapter()
  1372. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1373. 2019-12-01 20:56:32.500 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.requestMappingHandlerMapping()
  1374. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1375. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1376. 2019-12-01 20:56:32.500 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcConversionService()
  1377. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1378. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1379. 2019-12-01 20:56:32.500 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcValidator()
  1380. 2019-12-01 20:56:32.500 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1381. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1382. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1383. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1384. 2019-12-01 20:56:32.500 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcContentNegotiationManager()
  1385. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1386. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1387. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1388. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1389. 2019-12-01 20:56:32.501 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcPathMatcher()
  1390. 2019-12-01 20:56:32.502 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcUrlPathHelper()
  1391. 2019-12-01 20:56:32.502 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.viewControllerHandlerMapping()
  1392. 2019-12-01 20:56:32.502 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.beanNameHandlerMapping()
  1393. 2019-12-01 20:56:32.503 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.resourceHandlerMapping()
  1394. 2019-12-01 20:56:32.505 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcResourceUrlProvider()
  1395. 2019-12-01 20:56:32.505 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.defaultServletHandlerMapping()
  1396. 2019-12-01 20:56:32.501 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@e78fb5d)
  1397. 2019-12-01 20:56:32.506 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcUriComponentsContributor()
  1398. 2019-12-01 20:56:32.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1399. 2019-12-01 20:56:32.507 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.httpRequestHandlerAdapter()
  1400. 2019-12-01 20:56:32.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1401. 2019-12-01 20:56:32.507 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.simpleControllerHandlerAdapter()
  1402. 2019-12-01 20:56:32.508 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.handlerExceptionResolver()
  1403. 2019-12-01 20:56:32.508 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcViewResolver()
  1404. 2019-12-01 20:56:32.508 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration.mvcHandlerMappingIntrospector()
  1405. 2019-12-01 20:56:32.510 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  1406. 2019-12-01 20:56:32.511 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1407. 2019-12-01 20:56:32.511 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1408. 2019-12-01 20:56:32.511 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1409. )
  1410. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1411. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1412. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1413. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1414. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1415. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1416. 2019-12-01 20:56:32.512 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  1417. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  1418. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Unique name of this Host'
  1419. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Unique name of this Host)
  1420. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1421. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1422. 2019-12-01 20:56:32.513 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1423. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1424. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1425. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1426. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1427. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1428. 2019-12-01 20:56:32.514 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1429. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1430. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@12e5b155)
  1431. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1432. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1433. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1434. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1435. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1436. )
  1437. 2019-12-01 20:56:32.515 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1438. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1439. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1440. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1441. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1442. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1443. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'appBase'
  1444. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=appBase)
  1445. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'set host deployment directory'
  1446. 2019-12-01 20:56:32.516 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=set host deployment directory)
  1447. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1448. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1449. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1450. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1451. 2019-12-01 20:56:32.517 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1452. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1453. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1454. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1455. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1456. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1457. 2019-12-01 20:56:32.517 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1458. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3536bb56)
  1459. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1460. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1461. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1462. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1463. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1464. )
  1465. 2019-12-01 20:56:32.518 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1466. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1467. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1468. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1469. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1470. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1471. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'autoDeploy'
  1472. 2019-12-01 20:56:32.519 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=autoDeploy)
  1473. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The auto deploy flag for this Host'
  1474. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The auto deploy flag for this Host)
  1475. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean'
  1476. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean)
  1477. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1478. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1479. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1480. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1481. 2019-12-01 20:56:32.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1482. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1483. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1484. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1485. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@669c97b7)
  1486. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1487. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1488. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1489. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1490. 2019-12-01 20:56:32.521 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1491. )
  1492. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1493. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1494. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1495. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1496. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1497. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1498. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'deployOnStartup'
  1499. 2019-12-01 20:56:32.522 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=deployOnStartup)
  1500. 2019-12-01 20:56:32.523 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The deploy on startup flag for this Host'
  1501. 2019-12-01 20:56:32.523 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The deploy on startup flag for this Host)
  1502. 2019-12-01 20:56:32.523 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean'
  1503. 2019-12-01 20:56:32.523 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean)
  1504. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1505. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1506. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1507. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1508. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1509. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1510. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1511. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1512. 2019-12-01 20:56:32.524 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2f772a2a)
  1513. 2019-12-01 20:56:32.525 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1514. 2019-12-01 20:56:32.525 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1515. 2019-12-01 20:56:32.525 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1516. 2019-12-01 20:56:32.525 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1517. 2019-12-01 20:56:32.525 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1518. )
  1519. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1520. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1521. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1522. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1523. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1524. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1525. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'deployXML'
  1526. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=deployXML)
  1527. 2019-12-01 20:56:32.526 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'deploy Context XML config files property'
  1528. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=deploy Context XML config files property)
  1529. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean'
  1530. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean)
  1531. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1532. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1533. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1534. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1535. 2019-12-01 20:56:32.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1536. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1537. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1538. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1539. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@10275988)
  1540. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1541. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1542. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1543. 2019-12-01 20:56:32.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1544. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1545. )
  1546. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1547. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1548. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1549. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1550. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1551. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1552. 2019-12-01 20:56:32.529 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'unpackWARs'
  1553. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=unpackWARs)
  1554. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Unpack WARs property'
  1555. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Unpack WARs property)
  1556. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean'
  1557. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean)
  1558. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1559. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1560. 2019-12-01 20:56:32.530 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1561. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1562. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1563. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1564. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1565. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1566. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@104bbcd1)
  1567. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1568. 2019-12-01 20:56:32.531 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1569. 2019-12-01 20:56:32.532 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1570. 2019-12-01 20:56:32.532 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1571. 2019-12-01 20:56:32.532 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1572. )
  1573. 2019-12-01 20:56:32.537 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1574. 2019-12-01 20:56:32.537 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1575. 2019-12-01 20:56:32.537 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1576. '
  1577. 2019-12-01 20:56:32.537 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1578. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1579. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1580. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1581. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12e8a040)
  1582. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1583. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1584. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1585. 2019-12-01 20:56:32.538 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1586. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1587. )
  1588. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1589. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1590. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1591. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1592. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1593. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1594. 2019-12-01 20:56:32.539 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardManager'
  1595. 2019-12-01 20:56:32.540 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardManager)
  1596. 2019-12-01 20:56:32.540 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardManager'
  1597. 2019-12-01 20:56:32.542 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardManager)
  1598. 2019-12-01 20:56:32.542 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1599. 2019-12-01 20:56:32.542 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1600. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1601. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1602. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1603. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1604. )
  1605. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1606. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1607. 2019-12-01 20:56:32.543 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1608. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1609. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1610. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1611. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1612. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1613. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1614. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1615. 2019-12-01 20:56:32.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1616. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1617. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1618. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1619. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1620. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1621. 2019-12-01 20:56:32.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1622. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1623. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1624. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1625. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@458fe4d)
  1626. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1627. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1628. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1629. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1630. 2019-12-01 20:56:32.546 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1631. )
  1632. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1633. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1634. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1635. '
  1636. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1637. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1638. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1639. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1640. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2e991c57)
  1641. 2019-12-01 20:56:32.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1642. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1643. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1644. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1645. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1646. )
  1647. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1648. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1649. 2019-12-01 20:56:32.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1650. 2019-12-01 20:56:32.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1651. 2019-12-01 20:56:32.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1652. 2019-12-01 20:56:32.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1653. 2019-12-01 20:56:32.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createUserDatabaseRealm'
  1654. 2019-12-01 20:56:32.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createUserDatabaseRealm)
  1655. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new UserDatabase Realm'
  1656. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new UserDatabase Realm)
  1657. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1658. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1659. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1660. 2019-12-01 20:56:32.560 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1661. 2019-12-01 20:56:32.562 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1662. 2019-12-01 20:56:32.563 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1663. )
  1664. 2019-12-01 20:56:32.563 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1665. 2019-12-01 20:56:32.563 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1666. 2019-12-01 20:56:32.563 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1667. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1668. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1669. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1670. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1671. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1672. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1673. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1674. 2019-12-01 20:56:32.564 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1675. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1676. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1677. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1678. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1679. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1680. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1681. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1682. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1683. 2019-12-01 20:56:32.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1684. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@63f99061)
  1685. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1686. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1687. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1688. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1689. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1690. )
  1691. 2019-12-01 20:56:32.566 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1692. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1693. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1694. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1695. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1696. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1697. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName'
  1698. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName)
  1699. 2019-12-01 20:56:32.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Global JNDI resource name of our UserDatabase instance'
  1700. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Global JNDI resource name of our UserDatabase instance)
  1701. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1702. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1703. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1704. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1705. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1706. 2019-12-01 20:56:32.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1707. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1708. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1709. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1710. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1711. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3444d6fe)
  1712. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1713. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1714. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1715. 2019-12-01 20:56:32.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1716. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1717. )
  1718. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1719. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1720. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1721. '
  1722. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1723. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1724. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1725. 2019-12-01 20:56:32.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1726. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@77adecad)
  1727. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1728. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1729. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1730. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1731. 2019-12-01 20:56:32.571 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1732. )
  1733. 2019-12-01 20:56:32.582 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1734. 2019-12-01 20:56:32.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1735. 2019-12-01 20:56:32.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1736. 2019-12-01 20:56:32.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1737. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1738. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1739. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createValve'
  1740. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createValve)
  1741. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Valve for the given Container'
  1742. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Valve for the given Container)
  1743. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1744. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1745. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1746. 2019-12-01 20:56:32.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1747. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1748. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1749. )
  1750. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1751. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1752. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1753. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1754. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1755. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1756. 2019-12-01 20:56:32.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'className'
  1757. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=className)
  1758. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Fully qualified class name of the Valve to create'
  1759. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Fully qualified class name of the Valve to create)
  1760. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1761. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1762. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1763. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1764. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1765. 2019-12-01 20:56:32.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1766. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1767. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1768. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1769. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1770. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@11b03dab)
  1771. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1772. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1773. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1774. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1775. 2019-12-01 20:56:32.586 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1776. )
  1777. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1778. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1779. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1780. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1781. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1782. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1783. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1784. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1785. 2019-12-01 20:56:32.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1786. 2019-12-01 20:56:32.588 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1787. 2019-12-01 20:56:32.589 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1788. 2019-12-01 20:56:32.589 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1789. 2019-12-01 20:56:32.589 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1790. 2019-12-01 20:56:32.589 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.defaultViewResolver()
  1791. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1792. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1793. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1794. 2019-12-01 20:56:32.590 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1795. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1796. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1797. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1798. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1799. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1800. 2019-12-01 20:56:32.590 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3e65dd64)
  1801. 2019-12-01 20:56:32.591 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1802. 2019-12-01 20:56:32.591 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1803. 2019-12-01 20:56:32.591 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1804. 2019-12-01 20:56:32.591 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1805. 2019-12-01 20:56:32.592 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1806. )
  1807. 2019-12-01 20:56:32.592 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1808. 2019-12-01 20:56:32.592 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1809. 2019-12-01 20:56:32.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1810. '
  1811. 2019-12-01 20:56:32.597 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1812. 2019-12-01 20:56:32.598 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1813. 2019-12-01 20:56:32.599 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1814. 2019-12-01 20:56:32.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1815. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1816. 2019-12-01 20:56:32.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1817. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1818. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1819. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2c841f70)
  1820. 2019-12-01 20:56:32.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1821. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1822. 2019-12-01 20:56:32.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1823. 2019-12-01 20:56:32.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1824. 2019-12-01 20:56:32.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1825. 2019-12-01 20:56:32.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1826. 2019-12-01 20:56:32.601 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1827. )
  1828. 2019-12-01 20:56:32.601 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1829. 2019-12-01 20:56:32.601 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1830. 2019-12-01 20:56:32.601 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.viewResolver()
  1831. 2019-12-01 20:56:32.602 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1832. 2019-12-01 20:56:32.602 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.welcomePageHandlerMapping()
  1833. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1834. 2019-12-01 20:56:32.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1835. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1836. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1837. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1838. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1839. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1840. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createWebappLoader'
  1841. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createWebappLoader)
  1842. 2019-12-01 20:56:32.604 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Web Application Loader'
  1843. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Web Application Loader)
  1844. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1845. 2019-12-01 20:56:32.605 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1846. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1847. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  1848. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  1849. 2019-12-01 20:56:32.605 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1850. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1851. 2019-12-01 20:56:32.605 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1852. )
  1853. 2019-12-01 20:56:32.605 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.requestContextFilter()
  1854. 2019-12-01 20:56:32.606 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  1855. 2019-12-01 20:56:32.607 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1856. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1857. 2019-12-01 20:56:32.608 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1858. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1859. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1860. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1861. 2019-12-01 20:56:32.608 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.hiddenHttpMethodFilter()
  1862. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1863. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1864. 2019-12-01 20:56:32.608 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent'
  1865. 2019-12-01 20:56:32.609 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent)
  1866. 2019-12-01 20:56:32.609 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1867. 2019-12-01 20:56:32.610 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1868. 2019-12-01 20:56:32.610 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component'
  1869. 2019-12-01 20:56:32.610 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component)
  1870. 2019-12-01 20:56:32.610 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1871. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1872. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1873. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1874. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1875. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1876. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1877. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1878. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1879. 2019-12-01 20:56:32.611 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1880. 2019-12-01 20:56:32.611 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1881. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@345446c9)
  1882. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1883. 2019-12-01 20:56:32.612 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.httpPutFormContentFilter()
  1884. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1885. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1886. 2019-12-01 20:56:32.612 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1887. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1888. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1889. )
  1890. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1891. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1892. 2019-12-01 20:56:32.612 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1893. '
  1894. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1895. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1896. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1897. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1898. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2499688d)
  1899. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1900. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1901. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1902. 2019-12-01 20:56:32.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1903. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1904. )
  1905. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1906. )
  1907. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1908. )
  1909. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1910. )
  1911. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1912. )
  1913. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1914. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1915. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1916. 2019-12-01 20:56:32.614 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1917. 2019-12-01 20:56:32.615 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1918. 2019-12-01 20:56:32.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1919. 2019-12-01 20:56:32.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1920. 2019-12-01 20:56:32.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeConnector'
  1921. 2019-12-01 20:56:32.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeConnector)
  1922. 2019-12-01 20:56:32.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Connector'
  1923. 2019-12-01 20:56:32.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Connector)
  1924. 2019-12-01 20:56:32.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  1925. 2019-12-01 20:56:32.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  1926. 2019-12-01 20:56:32.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  1927. 2019-12-01 20:56:32.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  1928. 2019-12-01 20:56:32.617 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1929. 2019-12-01 20:56:32.617 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
  1930. 2019-12-01 20:56:32.618 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1931. 2019-12-01 20:56:32.618 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  1932. 2019-12-01 20:56:32.619 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1933. 2019-12-01 20:56:32.620 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1934. 2019-12-01 20:56:32.621 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration.gsonBuilder()
  1935. 2019-12-01 20:56:32.621 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  1936. 2019-12-01 20:56:32.623 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1937. 2019-12-01 20:56:32.623 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration.gson()
  1938. 2019-12-01 20:56:32.623 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration.standardGsonBuilderCustomizer()
  1939. 2019-12-01 20:56:32.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1940. 2019-12-01 20:56:32.625 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1941. )
  1942. 2019-12-01 20:56:32.625 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  1943. 2019-12-01 20:56:32.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  1944. 2019-12-01 20:56:32.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1945. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  1946. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1947. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  1948. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  1949. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  1950. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  1951. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  1952. 2019-12-01 20:56:32.626 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  1953. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  1954. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1955. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  1956. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  1957. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  1958. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1959. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1960. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1961. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  1962. 2019-12-01 20:56:32.627 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@41325a7c)
  1963. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  1964. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1965. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  1966. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  1967. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1968. )
  1969. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  1970. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  1971. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  1972. '
  1973. 2019-12-01 20:56:32.628 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1974. 2019-12-01 20:56:32.628 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1975. 2019-12-01 20:56:32.629 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  1976. 2019-12-01 20:56:32.629 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1977. 2019-12-01 20:56:32.629 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1978. 2019-12-01 20:56:32.629 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  1979. 2019-12-01 20:56:32.629 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4dc51efa)
  1980. 2019-12-01 20:56:32.630 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  1981. 2019-12-01 20:56:32.630 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  1982. 2019-12-01 20:56:32.630 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1983. 2019-12-01 20:56:32.630 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
  1984. 2019-12-01 20:56:32.630 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  1985. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  1986. )
  1987. 2019-12-01 20:56:32.631 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration.standardJacksonObjectMapperBuilderCustomizer()
  1988. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  1989. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  1990. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  1991. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  1992. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  1993. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  1994. 2019-12-01 20:56:32.631 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeContext'
  1995. 2019-12-01 20:56:32.631 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  1996. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeContext)
  1997. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Context'
  1998. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Context)
  1999. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2000. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2001. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2002. 2019-12-01 20:56:32.632 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
  2003. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2004. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2005. 2019-12-01 20:56:32.632 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2006. )
  2007. 2019-12-01 20:56:32.632 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2008. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2009. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2010. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2011. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2012. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2013. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2014. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2015. 2019-12-01 20:56:32.633 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2016. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2017. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2018. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2019. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2020. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2021. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2022. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2023. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2024. 2019-12-01 20:56:32.634 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2025. 2019-12-01 20:56:32.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2026. 2019-12-01 20:56:32.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2027. 2019-12-01 20:56:32.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2028. 2019-12-01 20:56:32.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@785a04e4)
  2029. 2019-12-01 20:56:32.640 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2030. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2031. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2032. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2033. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2034. )
  2035. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2036. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2037. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2038. '
  2039. 2019-12-01 20:56:32.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2040. 2019-12-01 20:56:32.648 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2041. 2019-12-01 20:56:32.648 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2042. 2019-12-01 20:56:32.648 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2043. 2019-12-01 20:56:32.648 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2be84029)
  2044. 2019-12-01 20:56:32.648 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2045. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2046. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2047. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2048. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2049. )
  2050. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2051. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2052. 2019-12-01 20:56:32.649 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2053. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2054. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2055. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2056. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeHost'
  2057. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeHost)
  2058. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Host'
  2059. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Host)
  2060. 2019-12-01 20:56:32.650 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2061. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2062. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2063. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2064. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2065. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2066. )
  2067. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2068. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2069. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2070. 2019-12-01 20:56:32.651 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2071. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2072. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2073. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2074. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2075. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2076. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2077. 2019-12-01 20:56:32.652 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2078. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2079. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2080. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2081. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2082. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2083. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2084. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2085. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2086. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2087. 2019-12-01 20:56:32.653 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4ebfa960)
  2088. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2089. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2090. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2091. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2092. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2093. )
  2094. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2095. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2096. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2097. '
  2098. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2099. 2019-12-01 20:56:32.654 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2100. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2101. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2102. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@142860b9)
  2103. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2104. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2105. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2106. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2107. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2108. )
  2109. 2019-12-01 20:56:32.655 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2110. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2111. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2112. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2113. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2114. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2115. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLoader'
  2116. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLoader)
  2117. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Loader'
  2118. 2019-12-01 20:56:32.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Loader)
  2119. 2019-12-01 20:56:32.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2120. 2019-12-01 20:56:32.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2121. 2019-12-01 20:56:32.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2122. 2019-12-01 20:56:32.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2123. 2019-12-01 20:56:32.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2124. 2019-12-01 20:56:32.658 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2125. )
  2126. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2127. 2019-12-01 20:56:32.659 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2128. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2129. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2130. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2131. 2019-12-01 20:56:32.659 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration.jacksonObjectMapperBuilder()
  2132. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2133. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2134. 2019-12-01 20:56:32.659 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2135. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2136. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2137. 2019-12-01 20:56:32.659 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
  2138. 2019-12-01 20:56:32.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2139. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2140. 2019-12-01 20:56:32.660 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2141. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2142. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2143. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2144. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2145. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2146. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2147. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2148. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2149. 2019-12-01 20:56:32.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2150. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2151. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3c7d3bfc)
  2152. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2153. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2154. 2019-12-01 20:56:32.661 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2155. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2156. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2157. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2158. )
  2159. 2019-12-01 20:56:32.661 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration.parameterNamesModule()
  2160. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2161. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2162. 2019-12-01 20:56:32.661 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2163. 2019-12-01 20:56:32.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2164. '
  2165. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2166. 2019-12-01 20:56:32.662 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
  2167. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2168. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2169. 2019-12-01 20:56:32.662 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2170. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2171. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@557ddd52)
  2172. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2173. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2174. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2175. 2019-12-01 20:56:32.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2176. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2177. )
  2178. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2179. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2180. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2181. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2182. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2183. 2019-12-01 20:56:32.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2184. 2019-12-01 20:56:32.663 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2185. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeManager'
  2186. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeManager)
  2187. 2019-12-01 20:56:32.664 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration.jacksonObjectMapper()
  2188. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Manager'
  2189. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Manager)
  2190. 2019-12-01 20:56:32.664 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
  2191. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2192. 2019-12-01 20:56:32.664 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.jsonComponentModule()
  2193. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2194. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2195. 2019-12-01 20:56:32.664 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2196. 2019-12-01 20:56:32.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2197. 2019-12-01 20:56:32.665 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2198. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2199. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2200. )
  2201. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2202. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2203. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2204. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2205. 2019-12-01 20:56:32.665 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
  2206. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2207. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2208. 2019-12-01 20:56:32.665 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2209. 2019-12-01 20:56:32.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2210. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2211. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2212. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2213. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2214. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2215. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2216. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2217. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2218. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2219. 2019-12-01 20:56:32.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2220. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2221. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2222. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2223. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@66ba9a34)
  2224. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2225. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2226. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2227. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2228. 2019-12-01 20:56:32.667 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2229. )
  2230. 2019-12-01 20:56:32.668 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2231. 2019-12-01 20:56:32.668 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2232. 2019-12-01 20:56:32.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2233. 2019-12-01 20:56:32.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2234. '
  2235. 2019-12-01 20:56:32.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2236. 2019-12-01 20:56:32.668 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration.stringHttpMessageConverter()
  2237. 2019-12-01 20:56:32.668 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2238. 2019-12-01 20:56:32.669 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2239. 2019-12-01 20:56:32.669 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2240. 2019-12-01 20:56:32.670 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2241. 2019-12-01 20:56:32.670 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
  2242. 2019-12-01 20:56:32.672 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2243. 2019-12-01 20:56:32.673 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2244. 2019-12-01 20:56:32.673 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration.mappingJackson2HttpMessageConverter()
  2245. 2019-12-01 20:56:32.673 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
  2246. 2019-12-01 20:56:32.673 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2247. 2019-12-01 20:56:32.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2248. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2249. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2250. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@31c003f2)
  2251. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2252. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2253. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2254. 2019-12-01 20:56:32.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2255. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2256. )
  2257. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2258. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2259. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2260. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2261. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2262. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2263. 2019-12-01 20:56:32.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRealm'
  2264. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRealm)
  2265. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Realm'
  2266. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Realm)
  2267. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2268. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2269. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2270. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2271. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2272. 2019-12-01 20:56:32.681 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2273. )
  2274. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2275. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2276. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2277. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2278. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2279. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2280. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2281. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2282. 2019-12-01 20:56:32.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2283. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2284. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2285. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2286. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2287. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2288. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2289. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2290. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2291. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2292. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2293. 2019-12-01 20:56:32.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2294. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@64b76ced)
  2295. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2296. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2297. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2298. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2299. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2300. )
  2301. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2302. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2303. 2019-12-01 20:56:32.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2304. '
  2305. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2306. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2307. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2308. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2309. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5f1bba64)
  2310. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2311. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2312. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2313. 2019-12-01 20:56:32.685 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2314. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2315. )
  2316. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2317. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2318. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2319. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2320. 2019-12-01 20:56:32.686 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2321. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2322. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeService'
  2323. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeService)
  2324. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Service'
  2325. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Service)
  2326. 2019-12-01 20:56:32.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2327. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2328. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2329. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2330. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2331. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2332. )
  2333. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2334. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2335. 2019-12-01 20:56:32.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2336. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2337. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2338. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2339. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2340. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2341. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2342. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2343. 2019-12-01 20:56:32.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2344. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2345. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2346. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2347. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2348. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2349. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2350. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2351. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2352. 2019-12-01 20:56:32.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2353. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6d42e089)
  2354. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2355. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2356. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2357. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2358. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2359. )
  2360. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2361. 2019-12-01 20:56:32.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2362. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2363. '
  2364. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2365. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2366. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2367. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2368. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5c2ca140)
  2369. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2370. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2371. 2019-12-01 20:56:32.692 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2372. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2373. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2374. )
  2375. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  2376. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  2377. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2378. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  2379. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2380. 2019-12-01 20:56:32.693 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  2381. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve'
  2382. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve)
  2383. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Valve'
  2384. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Valve)
  2385. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  2386. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  2387. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  2388. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  2389. 2019-12-01 20:56:32.694 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2390. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2391. )
  2392. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  2393. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  2394. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2395. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  2396. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2397. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  2398. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  2399. 2019-12-01 20:56:32.695 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2400. 2019-12-01 20:56:32.695 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  2401. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed'
  2402. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed)
  2403. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  2404. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  2405. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2406. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  2407. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  2408. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2409. 2019-12-01 20:56:32.696 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2410. 2019-12-01 20:56:32.697 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2411. 2019-12-01 20:56:32.698 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
  2412. 2019-12-01 20:56:32.699 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
  2413. 2019-12-01 20:56:32.699 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2414. 2019-12-01 20:56:32.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2415. 2019-12-01 20:56:32.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2416. 2019-12-01 20:56:32.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  2417. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3236e2c)
  2418. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  2419. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2420. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  2421. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  2422. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2423. )
  2424. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  2425. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  2426. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2427. '
  2428. 2019-12-01 20:56:32.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2429. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2430. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2431. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  2432. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1693cb6)
  2433. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  2434. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2435. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  2436. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  2437. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2438. )
  2439. 2019-12-01 20:56:32.702 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  2440. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  2441. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2442. '
  2443. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2444. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2445. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2446. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2447. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=MBeanFactory, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Factory for MBeans and corresponding components, type=org.apache.catalina.mbeans.MBeanFactory])
  2448. 2019-12-01 20:56:32.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  2449. 2019-12-01 20:56:32.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2450. 2019-12-01 20:56:32.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2451. 2019-12-01 20:56:32.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  2452. 2019-12-01 20:56:32.706 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2453. )
  2454. 2019-12-01 20:56:32.706 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors)
  2455. 2019-12-01 20:56:32.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors'
  2456. 2019-12-01 20:56:32.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2457. '
  2458. 2019-12-01 20:56:32.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching 'mbeans-descriptors'.
  2459. 2019-12-01 20:56:32.709 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument()
  2460. 2019-12-01 20:56:32.709 DEBUG 1725 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar!/org/apache/catalina/authenticator/mbeans-descriptors.xml
  2461. 2019-12-01 20:56:32.710 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@57da94c9)
  2462. 2019-12-01 20:56:32.710 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument()
  2463. 2019-12-01 20:56:32.711 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors)
  2464. 2019-12-01 20:56:32.711 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors'
  2465. 2019-12-01 20:56:32.711 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching 'mbeans-descriptors'.
  2466. 2019-12-01 20:56:32.711 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2467. )
  2468. 2019-12-01 20:56:32.712 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  2469. 2019-12-01 20:56:32.712 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  2470. 2019-12-01 20:56:32.712 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2471. 2019-12-01 20:56:32.712 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2472. 2019-12-01 20:56:32.713 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.messageConverters()
  2473. 2019-12-01 20:56:32.713 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2474. 2019-12-01 20:56:32.713 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2475. 2019-12-01 20:56:32.713 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
  2476. 2019-12-01 20:56:32.713 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2477. 2019-12-01 20:56:32.715 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2478. 2019-12-01 20:56:32.715 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration.jacksonCodecCustomizer()
  2479. 2019-12-01 20:56:32.715 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
  2480. 2019-12-01 20:56:32.716 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
  2481. 2019-12-01 20:56:32.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  2482. 2019-12-01 20:56:32.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2483. 2019-12-01 20:56:32.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  2484. 2019-12-01 20:56:32.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'BasicAuthenticator'
  2485. 2019-12-01 20:56:32.720 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.info.git.location' in any property source
  2486. 2019-12-01 20:56:32.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=BasicAuthenticator)
  2487. 2019-12-01 20:56:32.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of HTTP BASIC Authentication'
  2488. 2019-12-01 20:56:32.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of HTTP BASIC Authentication)
  2489. 2019-12-01 20:56:32.721 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2490. 2019-12-01 20:56:32.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  2491. 2019-12-01 20:56:32.721 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.info.build.location:classpath:META-INF/build-info.properties' in any property source
  2492. 2019-12-01 20:56:32.722 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.info.build.location' in any property source
  2493. 2019-12-01 20:56:32.724 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2494. 2019-12-01 20:56:32.724 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2495. 2019-12-01 20:56:32.725 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
  2496. 2019-12-01 20:56:32.724 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  2497. 2019-12-01 20:56:32.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  2498. 2019-12-01 20:56:32.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  2499. 2019-12-01 20:56:32.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.BasicAuthenticator'
  2500. 2019-12-01 20:56:32.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.BasicAuthenticator)
  2501. 2019-12-01 20:56:32.731 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2502. 2019-12-01 20:56:32.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2503. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2504. )
  2505. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2506. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2507. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2508. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2509. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2510. 2019-12-01 20:56:32.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2511. 2019-12-01 20:56:32.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alwaysUseSession'
  2512. 2019-12-01 20:56:32.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alwaysUseSession)
  2513. 2019-12-01 20:56:32.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a session always be used once a user is authenticated?'
  2514. 2019-12-01 20:56:32.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a session always be used once a user is authenticated?)
  2515. 2019-12-01 20:56:32.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2516. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2517. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2518. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2519. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2520. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2521. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2522. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2523. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2524. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2525. 2019-12-01 20:56:32.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3f2ddbad)
  2526. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2527. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2528. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2529. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2530. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2531. )
  2532. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2533. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2534. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2535. 2019-12-01 20:56:32.735 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2536. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2537. 2019-12-01 20:56:32.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2538. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2539. 2019-12-01 20:56:32.736 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.restTemplateBuilder()
  2540. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache'
  2541. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache)
  2542. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?'
  2543. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?)
  2544. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2545. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2546. 2019-12-01 20:56:32.736 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2547. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2548. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2549. 2019-12-01 20:56:32.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2550. 2019-12-01 20:56:32.736 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2551. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2552. 2019-12-01 20:56:32.737 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
  2553. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2554. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2555. 2019-12-01 20:56:32.737 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration.tomcatWebServerFactoryCustomizer()
  2556. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2557. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2558. 2019-12-01 20:56:32.737 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
  2559. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@729fe65d)
  2560. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2561. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2562. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2563. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2564. 2019-12-01 20:56:32.737 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2565. )
  2566. 2019-12-01 20:56:32.738 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2567. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2568. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2569. 2019-12-01 20:56:32.738 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2570. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2571. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2572. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2573. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2574. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication'
  2575. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication)
  2576. 2019-12-01 20:56:32.738 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2577. 2019-12-01 20:56:32.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated'
  2578. 2019-12-01 20:56:32.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated)
  2579. 2019-12-01 20:56:32.739 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  2580. 2019-12-01 20:56:32.741 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2581. 2019-12-01 20:56:32.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2582. 2019-12-01 20:56:32.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2583. 2019-12-01 20:56:32.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2584. 2019-12-01 20:56:32.747 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2585. 2019-12-01 20:56:32.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2586. 2019-12-01 20:56:32.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2587. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2588. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2589. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2590. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2591. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@71e0481b)
  2592. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2593. 2019-12-01 20:56:32.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2594. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2595. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2596. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2597. )
  2598. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2599. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2600. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2601. 2019-12-01 20:56:32.749 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2602. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2603. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2604. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  2605. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  2606. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  2607. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  2608. 2019-12-01 20:56:32.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2609. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2610. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  2611. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  2612. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2613. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2614. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2615. 2019-12-01 20:56:32.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2616. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2617. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2618. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2619. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2620. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6d9f3713)
  2621. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2622. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2623. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2624. 2019-12-01 20:56:32.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2625. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2626. )
  2627. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2628. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2629. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2630. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2631. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2632. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2633. 2019-12-01 20:56:32.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching'
  2634. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching)
  2635. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  2636. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  2637. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2638. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2639. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2640. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2641. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2642. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2643. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2644. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2645. 2019-12-01 20:56:32.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2646. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2647. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3c3e79be)
  2648. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2649. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2650. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2651. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2652. 2019-12-01 20:56:32.755 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2653. )
  2654. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2655. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2656. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2657. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2658. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2659. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2660. 2019-12-01 20:56:32.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma'
  2661. 2019-12-01 20:56:32.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma)
  2662. 2019-12-01 20:56:32.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  2663. 2019-12-01 20:56:32.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  2664. 2019-12-01 20:56:32.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2665. 2019-12-01 20:56:32.760 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2666. 2019-12-01 20:56:32.760 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.characterEncodingFilter()
  2667. 2019-12-01 20:56:32.761 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.localeCharsetMappingsCustomizer()
  2668. 2019-12-01 20:56:32.761 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2669. 2019-12-01 20:56:32.762 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2670. 2019-12-01 20:56:32.763 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2671. 2019-12-01 20:56:32.764 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2672. 2019-12-01 20:56:32.764 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2673. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2674. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2675. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2676. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2677. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2678. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2679. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2680. 2019-12-01 20:56:32.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@311edd6a)
  2681. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2682. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2683. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2684. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2685. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2686. )
  2687. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2688. 2019-12-01 20:56:32.766 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  2689. 2019-12-01 20:56:32.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2690. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2691. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2692. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2693. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2694. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm'
  2695. 2019-12-01 20:56:32.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm)
  2696. 2019-12-01 20:56:32.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation'
  2697. 2019-12-01 20:56:32.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation)
  2698. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2699. 2019-12-01 20:56:32.769 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2700. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2701. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2702. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2703. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2704. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2705. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2706. 2019-12-01 20:56:32.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2707. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2708. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2709. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@42cdfbc2)
  2710. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2711. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2712. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2713. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2714. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2715. )
  2716. 2019-12-01 20:56:32.770 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2717. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2718. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2719. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2720. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2721. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2722. 2019-12-01 20:56:32.771 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2723. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass'
  2724. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass)
  2725. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation'
  2726. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation)
  2727. 2019-12-01 20:56:32.771 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2728. 2019-12-01 20:56:32.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2729. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2730. 2019-12-01 20:56:32.772 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration.multipartConfigElement()
  2731. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2732. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2733. 2019-12-01 20:56:32.772 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  2734. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2735. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2736. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2737. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2738. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2739. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2740. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@567e6b27)
  2741. 2019-12-01 20:56:32.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2742. 2019-12-01 20:56:32.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'autoConfigurationReport'
  2743. 2019-12-01 20:56:32.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2744. 2019-12-01 20:56:32.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2745. 2019-12-01 20:56:32.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2746. 2019-12-01 20:56:32.773 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2747. )
  2748. 2019-12-01 20:56:32.774 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2749. 2019-12-01 20:56:32.773 DEBUG 1725 --- [main] a.ConfigurationClassBeanDefinitionReader : Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration.multipartResolver()
  2750. 2019-12-01 20:56:32.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2751. 2019-12-01 20:56:32.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2752. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2753. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2754. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2755. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider'
  2756. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider)
  2757. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation'
  2758. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation)
  2759. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2760. 2019-12-01 20:56:32.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2761. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2762. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2763. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2764. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2765. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2766. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2767. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2768. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2769. 2019-12-01 20:56:32.776 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19421bdf)
  2770. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2771. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2772. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2773. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2774. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2775. )
  2776. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2777. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2778. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2779. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2780. 2019-12-01 20:56:32.777 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2781. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2782. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  2783. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  2784. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  2785. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  2786. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2787. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2788. 2019-12-01 20:56:32.778 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  2789. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  2790. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2791. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2792. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2793. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2794. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2795. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2796. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2797. 2019-12-01 20:56:32.779 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2798. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5ef07010)
  2799. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2800. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2801. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2802. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2803. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2804. )
  2805. 2019-12-01 20:56:32.780 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  2806. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  2807. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  2808. '
  2809. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2810. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2811. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2812. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2813. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=BasicAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of HTTP BASIC Authentication, group=Valve, type=org.apache.catalina.authenticator.BasicAuthenticator])
  2814. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  2815. 2019-12-01 20:56:32.781 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2816. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2817. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  2818. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2819. )
  2820. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  2821. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  2822. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  2823. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  2824. 2019-12-01 20:56:32.782 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2825. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  2826. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'DigestAuthenticator'
  2827. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=DigestAuthenticator)
  2828. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of HTTP DIGEST Authentication'
  2829. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of HTTP DIGEST Authentication)
  2830. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  2831. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  2832. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  2833. 2019-12-01 20:56:32.783 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  2834. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.DigestAuthenticator'
  2835. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.DigestAuthenticator)
  2836. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  2837. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2838. )
  2839. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2840. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2841. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2842. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2843. 2019-12-01 20:56:32.784 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2844. 2019-12-01 20:56:32.792 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2845. 2019-12-01 20:56:32.792 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alwaysUseSession'
  2846. 2019-12-01 20:56:32.792 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alwaysUseSession)
  2847. 2019-12-01 20:56:32.792 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a session always be used once a user is authenticated?'
  2848. 2019-12-01 20:56:32.792 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a session always be used once a user is authenticated?)
  2849. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2850. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2851. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2852. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2853. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2854. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2855. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2856. 2019-12-01 20:56:32.793 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2857. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2858. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2859. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@734e93e7)
  2860. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2861. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2862. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2863. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2864. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2865. )
  2866. 2019-12-01 20:56:32.794 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2867. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2868. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2869. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2870. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2871. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2872. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache'
  2873. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache)
  2874. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?'
  2875. 2019-12-01 20:56:32.795 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?)
  2876. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2877. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2878. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2879. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2880. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2881. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2882. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2883. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2884. 2019-12-01 20:56:32.796 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2885. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2886. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56cce9fa)
  2887. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2888. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2889. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2890. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2891. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2892. )
  2893. 2019-12-01 20:56:32.797 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2894. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2895. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2896. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2897. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2898. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2899. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication'
  2900. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication)
  2901. 2019-12-01 20:56:32.798 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated'
  2902. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated)
  2903. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2904. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2905. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2906. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2907. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2908. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2909. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2910. 2019-12-01 20:56:32.799 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2911. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2912. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2913. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5fd98c1f)
  2914. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2915. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2916. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2917. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2918. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2919. )
  2920. 2019-12-01 20:56:32.800 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2921. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2922. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2923. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2924. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2925. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2926. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  2927. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  2928. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  2929. 2019-12-01 20:56:32.801 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  2930. 2019-12-01 20:56:32.809 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  2931. 2019-12-01 20:56:32.815 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  2932. 2019-12-01 20:56:32.815 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  2933. 2019-12-01 20:56:32.815 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  2934. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2935. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2936. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2937. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2938. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2939. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2940. 2019-12-01 20:56:32.816 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2941. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2942. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2f40704)
  2943. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2944. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2945. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2946. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2947. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2948. )
  2949. 2019-12-01 20:56:32.817 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2950. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2951. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2952. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2953. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2954. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2955. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cnonceCacheSize'
  2956. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cnonceCacheSize)
  2957. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The size of the cnonce cache used to prevent replay attacks'
  2958. 2019-12-01 20:56:32.818 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The size of the cnonce cache used to prevent replay attacks)
  2959. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int'
  2960. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int)
  2961. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2962. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2963. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2964. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2965. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2966. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2967. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2968. 2019-12-01 20:56:32.819 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2969. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5227d16)
  2970. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2971. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2972. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2973. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  2974. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  2975. )
  2976. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  2977. 2019-12-01 20:56:32.820 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  2978. 2019-12-01 20:56:32.821 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2979. 2019-12-01 20:56:32.821 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  2980. 2019-12-01 20:56:32.821 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  2981. 2019-12-01 20:56:32.821 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  2982. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching'
  2983. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching)
  2984. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  2985. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  2986. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  2987. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  2988. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2989. 2019-12-01 20:56:32.822 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  2990. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  2991. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  2992. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  2993. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  2994. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2995. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  2996. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@273a1c98)
  2997. 2019-12-01 20:56:32.823 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  2998. 2019-12-01 20:56:32.825 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  2999. 2019-12-01 20:56:32.835 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3000. 2019-12-01 20:56:32.835 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3001. 2019-12-01 20:56:32.835 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3002. )
  3003. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3004. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3005. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3006. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3007. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3008. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3009. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'key'
  3010. 2019-12-01 20:56:32.836 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=key)
  3011. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The secret key used by digest authentication'
  3012. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The secret key used by digest authentication)
  3013. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3014. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3015. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3016. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3017. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3018. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3019. 2019-12-01 20:56:32.837 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3020. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3021. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3022. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3023. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1388e42d)
  3024. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3025. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3026. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3027. 2019-12-01 20:56:32.838 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3028. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3029. )
  3030. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3031. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3032. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3033. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3034. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3035. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3036. 2019-12-01 20:56:32.839 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'nonceValidity'
  3037. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=nonceValidity)
  3038. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The time, in milliseconds, for which a server issued nonce will be valid'
  3039. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The time, in milliseconds, for which a server issued nonce will be valid)
  3040. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  3041. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  3042. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3043. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3044. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3045. 2019-12-01 20:56:32.840 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3046. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3047. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3048. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3049. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3050. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@21919262)
  3051. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3052. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3053. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3054. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3055. 2019-12-01 20:56:32.841 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3056. )
  3057. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3058. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3059. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3060. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3061. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3062. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3063. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'opaque'
  3064. 2019-12-01 20:56:32.842 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=opaque)
  3065. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The opaque server string used by digest authentication'
  3066. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The opaque server string used by digest authentication)
  3067. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3068. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3069. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3070. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3071. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3072. 2019-12-01 20:56:32.843 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3073. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3074. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3075. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3076. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3077. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56b88414)
  3078. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3079. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3080. 2019-12-01 20:56:32.844 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3081. 2019-12-01 20:56:32.845 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3082. 2019-12-01 20:56:32.855 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3083. )
  3084. 2019-12-01 20:56:32.855 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3085. 2019-12-01 20:56:32.856 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3086. 2019-12-01 20:56:32.866 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3087. 2019-12-01 20:56:32.866 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3088. 2019-12-01 20:56:32.866 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3089. 2019-12-01 20:56:32.866 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3090. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma'
  3091. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma)
  3092. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  3093. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  3094. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3095. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3096. 2019-12-01 20:56:32.867 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3097. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3098. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3099. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3100. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3101. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3102. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3103. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3104. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7454538c)
  3105. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3106. 2019-12-01 20:56:32.868 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3107. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3108. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3109. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3110. )
  3111. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3112. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3113. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3114. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3115. 2019-12-01 20:56:32.869 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3116. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3117. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm'
  3118. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm)
  3119. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation'
  3120. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation)
  3121. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3122. 2019-12-01 20:56:32.870 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3123. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3124. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3125. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3126. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3127. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3128. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3129. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3130. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3131. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@202978a7)
  3132. 2019-12-01 20:56:32.871 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3133. 2019-12-01 20:56:32.872 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3134. 2019-12-01 20:56:32.872 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3135. 2019-12-01 20:56:32.872 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3136. 2019-12-01 20:56:32.872 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3137. )
  3138. 2019-12-01 20:56:32.872 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3139. 2019-12-01 20:56:32.873 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3140. 2019-12-01 20:56:32.873 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3141. 2019-12-01 20:56:32.873 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3142. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3143. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3144. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass'
  3145. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass)
  3146. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation'
  3147. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation)
  3148. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3149. 2019-12-01 20:56:32.874 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3150. 2019-12-01 20:56:32.875 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3151. 2019-12-01 20:56:32.876 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3152. 2019-12-01 20:56:32.876 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3153. 2019-12-01 20:56:32.876 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3154. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3155. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3156. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3157. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3158. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d06ec42)
  3159. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3160. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3161. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3162. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3163. 2019-12-01 20:56:32.877 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3164. )
  3165. 2019-12-01 20:56:32.878 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3166. 2019-12-01 20:56:32.878 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3167. 2019-12-01 20:56:32.878 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3168. 2019-12-01 20:56:32.878 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3169. 2019-12-01 20:56:32.886 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3170. 2019-12-01 20:56:32.886 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3171. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider'
  3172. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider)
  3173. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation'
  3174. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation)
  3175. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3176. 2019-12-01 20:56:32.887 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3177. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3178. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3179. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3180. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3181. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3182. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3183. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3184. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3185. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1f0c41d2)
  3186. 2019-12-01 20:56:32.888 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3187. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3188. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3189. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3190. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3191. )
  3192. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3193. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3194. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3195. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3196. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3197. 2019-12-01 20:56:32.889 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3198. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  3199. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  3200. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  3201. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  3202. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3203. 2019-12-01 20:56:32.890 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3204. 2019-12-01 20:56:32.891 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3205. 2019-12-01 20:56:32.891 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3206. 2019-12-01 20:56:32.891 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3207. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3208. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3209. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3210. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3211. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3212. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3213. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3214. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4912b98c)
  3215. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3216. 2019-12-01 20:56:32.892 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3217. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3218. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3219. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3220. )
  3221. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3222. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3223. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3224. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3225. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3226. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3227. 2019-12-01 20:56:32.893 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validateUri'
  3228. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validateUri)
  3229. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the uri be validated as required by RFC2617?'
  3230. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the uri be validated as required by RFC2617?)
  3231. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3232. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3233. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3234. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3235. 2019-12-01 20:56:32.894 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3236. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3237. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3238. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3239. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3240. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3241. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22150c49)
  3242. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3243. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3244. 2019-12-01 20:56:32.895 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3245. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3246. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3247. )
  3248. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  3249. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  3250. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  3251. '
  3252. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3253. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3254. 2019-12-01 20:56:32.896 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3255. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3256. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=DigestAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of HTTP DIGEST Authentication, group=Valve, type=org.apache.catalina.authenticator.DigestAuthenticator])
  3257. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  3258. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3259. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3260. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  3261. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3262. )
  3263. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  3264. 2019-12-01 20:56:32.897 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  3265. 2019-12-01 20:56:32.898 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3266. 2019-12-01 20:56:32.898 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  3267. 2019-12-01 20:56:32.898 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3268. 2019-12-01 20:56:32.898 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  3269. 2019-12-01 20:56:32.898 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'FormAuthenticator'
  3270. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=FormAuthenticator)
  3271. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of FORM BASED Authentication'
  3272. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of FORM BASED Authentication)
  3273. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  3274. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  3275. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  3276. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  3277. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.FormAuthenticator'
  3278. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.FormAuthenticator)
  3279. 2019-12-01 20:56:32.899 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3280. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3281. )
  3282. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3283. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3284. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3285. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3286. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3287. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3288. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication'
  3289. 2019-12-01 20:56:32.900 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication)
  3290. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated'
  3291. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated)
  3292. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3293. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3294. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3295. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3296. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3297. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3298. 2019-12-01 20:56:32.901 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3299. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3300. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3301. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3302. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@18cb90b5)
  3303. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3304. 2019-12-01 20:56:32.903 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3305. 2019-12-01 20:56:32.904 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3306. 2019-12-01 20:56:32.904 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3307. 2019-12-01 20:56:32.904 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3308. )
  3309. 2019-12-01 20:56:32.904 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3310. 2019-12-01 20:56:32.904 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3311. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3312. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3313. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3314. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3315. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'characterEncoding'
  3316. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=characterEncoding)
  3317. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Character encoding to use to read the username and password parameters from the request'
  3318. 2019-12-01 20:56:32.905 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Character encoding to use to read the username and password parameters from the request)
  3319. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3320. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3321. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3322. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3323. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3324. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3325. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3326. 2019-12-01 20:56:32.906 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3327. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3328. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3329. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65b450af)
  3330. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3331. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3332. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3333. 2019-12-01 20:56:32.907 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3334. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3335. )
  3336. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3337. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3338. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3339. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3340. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3341. 2019-12-01 20:56:32.908 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3342. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  3343. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  3344. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  3345. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  3346. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3347. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3348. 2019-12-01 20:56:32.909 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3349. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3350. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3351. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3352. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3353. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3354. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3355. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3356. 2019-12-01 20:56:32.910 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3357. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3358. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@39364b4c)
  3359. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3360. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3361. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3362. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3363. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3364. )
  3365. 2019-12-01 20:56:32.911 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3366. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3367. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3368. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3369. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3370. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3371. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching'
  3372. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching)
  3373. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  3374. 2019-12-01 20:56:32.912 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  3375. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3376. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3377. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3378. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3379. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3380. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3381. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3382. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3383. 2019-12-01 20:56:32.913 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3384. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3385. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@33cb6f67)
  3386. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3387. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3388. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3389. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3390. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3391. )
  3392. 2019-12-01 20:56:32.914 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3393. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3394. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3395. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3396. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3397. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3398. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'landingPage'
  3399. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=landingPage)
  3400. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the behavior of the FORM authentication process if the process is misused, for example by directly requesting the login page or delaying logging in for so long that the session expires'
  3401. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the behavior of the FORM authentication process if the process is misused, for example by directly requesting the login page or delaying logging in for so long that the session expires)
  3402. 2019-12-01 20:56:32.915 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3403. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3404. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3405. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3406. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3407. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3408. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3409. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3410. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3411. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3412. 2019-12-01 20:56:32.916 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77411f93)
  3413. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3414. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3415. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3416. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3417. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3418. )
  3419. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3420. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3421. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3422. 2019-12-01 20:56:32.917 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3423. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3424. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3425. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma'
  3426. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma)
  3427. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  3428. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  3429. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3430. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3431. 2019-12-01 20:56:32.918 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3432. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3433. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3434. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3435. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3436. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3437. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3438. 2019-12-01 20:56:32.919 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3439. 2019-12-01 20:56:32.927 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@303718fc)
  3440. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3441. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3442. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3443. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3444. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3445. )
  3446. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3447. 2019-12-01 20:56:32.928 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3448. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3449. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3450. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3451. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3452. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm'
  3453. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm)
  3454. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation'
  3455. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation)
  3456. 2019-12-01 20:56:32.929 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3457. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3458. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3459. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3460. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3461. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3462. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3463. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3464. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3465. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3466. 2019-12-01 20:56:32.930 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b50499d)
  3467. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3468. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3469. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3470. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3471. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3472. )
  3473. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3474. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3475. 2019-12-01 20:56:32.931 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3476. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3477. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3478. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3479. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass'
  3480. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass)
  3481. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation'
  3482. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation)
  3483. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3484. 2019-12-01 20:56:32.932 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3485. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3486. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3487. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3488. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3489. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3490. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3491. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3492. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3493. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5388b9c7)
  3494. 2019-12-01 20:56:32.933 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3495. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3496. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3497. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3498. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3499. )
  3500. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3501. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3502. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3503. 2019-12-01 20:56:32.934 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3504. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3505. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3506. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider'
  3507. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider)
  3508. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation'
  3509. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation)
  3510. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3511. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3512. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3513. 2019-12-01 20:56:32.935 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3514. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3515. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3516. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3517. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3518. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3519. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3520. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2cca99a2)
  3521. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3522. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3523. 2019-12-01 20:56:32.936 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3524. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3525. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3526. )
  3527. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3528. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3529. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3530. 2019-12-01 20:56:32.937 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3531. 2019-12-01 20:56:32.938 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3532. 2019-12-01 20:56:32.938 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3533. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  3534. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  3535. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  3536. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  3537. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3538. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3539. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3540. 2019-12-01 20:56:32.939 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3541. 2019-12-01 20:56:32.941 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3542. 2019-12-01 20:56:32.941 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3543. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3544. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3545. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3546. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3547. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3548. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3549. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2432943f)
  3550. 2019-12-01 20:56:32.942 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3551. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3552. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3553. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3554. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3555. )
  3556. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  3557. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  3558. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  3559. '
  3560. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3561. 2019-12-01 20:56:32.943 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3562. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3563. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3564. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=FormAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of FORM BASED Authentication, group=Valve, type=org.apache.catalina.authenticator.FormAuthenticator])
  3565. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  3566. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3567. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3568. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  3569. 2019-12-01 20:56:32.944 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3570. )
  3571. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  3572. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  3573. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3574. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  3575. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3576. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  3577. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NonLoginAuthenticator'
  3578. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NonLoginAuthenticator)
  3579. 2019-12-01 20:56:32.945 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation that checks only security constraints not involving user authentication'
  3580. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation that checks only security constraints not involving user authentication)
  3581. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  3582. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  3583. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  3584. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  3585. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.NonLoginAuthenticator'
  3586. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.NonLoginAuthenticator)
  3587. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3588. 2019-12-01 20:56:32.946 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3589. )
  3590. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3591. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3592. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3593. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3594. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3595. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3596. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache'
  3597. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache)
  3598. 2019-12-01 20:56:32.947 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?'
  3599. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?)
  3600. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3601. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3602. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3603. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3604. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3605. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3606. 2019-12-01 20:56:32.948 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3607. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3608. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3609. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3610. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1d172d85)
  3611. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3612. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3613. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3614. 2019-12-01 20:56:32.949 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3615. 2019-12-01 20:56:32.950 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3616. )
  3617. 2019-12-01 20:56:32.950 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3618. 2019-12-01 20:56:32.951 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3619. 2019-12-01 20:56:32.954 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3620. 2019-12-01 20:56:32.954 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3621. 2019-12-01 20:56:32.955 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3622. 2019-12-01 20:56:32.955 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3623. 2019-12-01 20:56:32.958 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication'
  3624. 2019-12-01 20:56:32.957 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced cn.wildfirechat.push.PushApplication; enhanced class name is: cn.wildfirechat.push.PushApplication$$EnhancerBySpringCGLIB$$42ea3dd9
  3625. 2019-12-01 20:56:32.958 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication)
  3626. 2019-12-01 20:56:32.958 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'pushApplication' existing class 'cn.wildfirechat.push.PushApplication' with enhanced class 'cn.wildfirechat.push.PushApplication$$EnhancerBySpringCGLIB$$42ea3dd9'
  3627. 2019-12-01 20:56:32.962 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced cn.wildfirechat.push.android.hms.HMSConfig; enhanced class name is: cn.wildfirechat.push.android.hms.HMSConfig$$EnhancerBySpringCGLIB$$63c5e6f4
  3628. 2019-12-01 20:56:32.962 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'HMSConfig' existing class 'cn.wildfirechat.push.android.hms.HMSConfig' with enhanced class 'cn.wildfirechat.push.android.hms.HMSConfig$$EnhancerBySpringCGLIB$$63c5e6f4'
  3629. 2019-12-01 20:56:32.965 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced cn.wildfirechat.push.android.meizu.MeiZuConfig; enhanced class name is: cn.wildfirechat.push.android.meizu.MeiZuConfig$$EnhancerBySpringCGLIB$$301d3490
  3630. 2019-12-01 20:56:32.965 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'meiZuConfig' existing class 'cn.wildfirechat.push.android.meizu.MeiZuConfig' with enhanced class 'cn.wildfirechat.push.android.meizu.MeiZuConfig$$EnhancerBySpringCGLIB$$301d3490'
  3631. 2019-12-01 20:56:32.968 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced cn.wildfirechat.push.android.xiaomi.XiaomiConfig; enhanced class name is: cn.wildfirechat.push.android.xiaomi.XiaomiConfig$$EnhancerBySpringCGLIB$$32499654
  3632. 2019-12-01 20:56:32.968 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'xiaomiConfig' existing class 'cn.wildfirechat.push.android.xiaomi.XiaomiConfig' with enhanced class 'cn.wildfirechat.push.android.xiaomi.XiaomiConfig$$EnhancerBySpringCGLIB$$32499654'
  3633. 2019-12-01 20:56:32.958 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated'
  3634. 2019-12-01 20:56:32.970 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated)
  3635. 2019-12-01 20:56:32.970 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3636. 2019-12-01 20:56:32.970 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3637. 2019-12-01 20:56:32.970 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3638. 2019-12-01 20:56:32.970 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3639. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3640. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3641. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3642. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3643. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3644. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3645. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@bc7e961)
  3646. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3647. 2019-12-01 20:56:32.971 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3648. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3649. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3650. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3651. )
  3652. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3653. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3654. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3655. 2019-12-01 20:56:32.972 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3656. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3657. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3658. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  3659. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  3660. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  3661. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  3662. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3663. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3664. 2019-12-01 20:56:32.973 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3665. 2019-12-01 20:56:32.974 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3666. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3667. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3668. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3669. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3670. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3671. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3672. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3673. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3674. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@73b87632)
  3675. 2019-12-01 20:56:32.975 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3676. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3677. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3678. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3679. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3680. )
  3681. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3682. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3683. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3684. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3685. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3686. 2019-12-01 20:56:32.976 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3687. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching'
  3688. 2019-12-01 20:56:32.977 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced cn.wildfirechat.push.ios.ApnsConfig; enhanced class name is: cn.wildfirechat.push.ios.ApnsConfig$$EnhancerBySpringCGLIB$$155e005c
  3689. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching)
  3690. 2019-12-01 20:56:32.977 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'apnsConfig' existing class 'cn.wildfirechat.push.ios.ApnsConfig' with enhanced class 'cn.wildfirechat.push.ios.ApnsConfig$$EnhancerBySpringCGLIB$$155e005c'
  3691. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  3692. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  3693. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3694. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3695. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3696. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3697. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3698. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3699. 2019-12-01 20:56:32.977 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3700. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3701. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3702. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3703. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@439b9716)
  3704. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3705. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3706. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3707. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3708. 2019-12-01 20:56:32.978 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3709. )
  3710. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3711. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3712. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3713. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3714. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3715. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3716. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma'
  3717. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma)
  3718. 2019-12-01 20:56:32.979 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  3719. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  3720. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3721. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3722. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3723. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3724. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3725. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3726. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3727. 2019-12-01 20:56:32.980 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3728. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3729. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3730. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6744e1e5)
  3731. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3732. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3733. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3734. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3735. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3736. )
  3737. 2019-12-01 20:56:32.981 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3738. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3739. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3740. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3741. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3742. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3743. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  3744. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  3745. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  3746. 2019-12-01 20:56:32.982 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  3747. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3748. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3749. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3750. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3751. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3752. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3753. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3754. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3755. 2019-12-01 20:56:32.983 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3756. 2019-12-01 20:56:32.984 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3757. 2019-12-01 20:56:32.984 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3758. 2019-12-01 20:56:32.984 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3759. 2019-12-01 20:56:32.984 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration$$EnhancerBySpringCGLIB$$1277b918
  3760. 2019-12-01 20:56:32.984 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration$$EnhancerBySpringCGLIB$$1277b918'
  3761. 2019-12-01 20:56:32.987 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration$$EnhancerBySpringCGLIB$$8a5b5bce
  3762. 2019-12-01 20:56:32.987 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' existing class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration$$EnhancerBySpringCGLIB$$8a5b5bce'
  3763. 2019-12-01 20:56:32.990 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@537c908d)
  3764. 2019-12-01 20:56:32.990 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3765. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3766. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3767. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3768. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3769. )
  3770. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  3771. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  3772. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  3773. '
  3774. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3775. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3776. 2019-12-01 20:56:32.991 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3777. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3778. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NonLoginAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation that checks only security constraints not involving user authentication, group=Valve, type=org.apache.catalina.authenticator.NonLoginAuthenticator])
  3779. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  3780. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3781. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3782. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  3783. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3784. )
  3785. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  3786. 2019-12-01 20:56:32.992 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  3787. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3788. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  3789. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3790. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  3791. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'SingleSignOn'
  3792. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=SingleSignOn)
  3793. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'A Valve that supports a 'single signon' user experience'
  3794. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=A Valve that supports a 'single signon' user experience)
  3795. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  3796. 2019-12-01 20:56:32.993 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  3797. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  3798. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  3799. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.SingleSignOn'
  3800. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.SingleSignOn)
  3801. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3802. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3803. )
  3804. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3805. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3806. 2019-12-01 20:56:32.994 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3807. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3808. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3809. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3810. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  3811. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  3812. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  3813. 2019-12-01 20:56:32.995 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$$EnhancerBySpringCGLIB$$d2b030b1
  3814. 2019-12-01 20:56:32.995 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$$EnhancerBySpringCGLIB$$d2b030b1'
  3815. 2019-12-01 20:56:32.995 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  3816. 2019-12-01 20:56:33.003 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3817. 2019-12-01 20:56:33.003 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3818. 2019-12-01 20:56:33.003 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3819. 2019-12-01 20:56:33.003 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3820. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3821. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3822. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3823. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3824. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3825. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3826. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3827. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3828. 2019-12-01 20:56:33.004 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@63457536)
  3829. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3830. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3831. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3832. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3833. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3834. )
  3835. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3836. 2019-12-01 20:56:33.005 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3837. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3838. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3839. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3840. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3841. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requireReauthentication'
  3842. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requireReauthentication)
  3843. 2019-12-01 20:56:33.006 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we attempt to reauthenticate each request against the security Realm?'
  3844. 2019-12-01 20:56:33.007 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we attempt to reauthenticate each request against the security Realm?)
  3845. 2019-12-01 20:56:33.007 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3846. 2019-12-01 20:56:33.007 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3847. 2019-12-01 20:56:33.008 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3848. 2019-12-01 20:56:33.008 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$7c43b8c9
  3849. 2019-12-01 20:56:33.009 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3850. 2019-12-01 20:56:33.009 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' existing class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$7c43b8c9'
  3851. 2019-12-01 20:56:33.009 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3852. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3853. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3854. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3855. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3856. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3857. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7cf97d6f)
  3858. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3859. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3860. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3861. 2019-12-01 20:56:33.010 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3862. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3863. )
  3864. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3865. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3866. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3867. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3868. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3869. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3870. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cookieDomain'
  3871. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cookieDomain)
  3872. 2019-12-01 20:56:33.011 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to '(Optional) Domain to be used by sso cookies'
  3873. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=(Optional) Domain to be used by sso cookies)
  3874. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3875. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3876. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3877. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3878. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3879. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3880. 2019-12-01 20:56:33.012 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration$$EnhancerBySpringCGLIB$$17a6e42
  3881. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3882. 2019-12-01 20:56:33.012 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration$$EnhancerBySpringCGLIB$$17a6e42'
  3883. 2019-12-01 20:56:33.012 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3884. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3885. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3886. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3c72e0dc)
  3887. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3888. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3889. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3890. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3891. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3892. )
  3893. 2019-12-01 20:56:33.013 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3894. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3895. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3896. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3897. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3898. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3899. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  3900. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  3901. 2019-12-01 20:56:33.014 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  3902. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  3903. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  3904. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  3905. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  3906. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  3907. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3908. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3909. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3910. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3911. 2019-12-01 20:56:33.015 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3912. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3913. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3914. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3915. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@b3de727)
  3916. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3917. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3918. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3919. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3920. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3921. )
  3922. 2019-12-01 20:56:33.016 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  3923. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  3924. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  3925. '
  3926. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3927. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3928. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3929. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3930. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=SingleSignOn, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=A Valve that supports a 'single signon' user experience, group=Valve, type=org.apache.catalina.authenticator.SingleSignOn])
  3931. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  3932. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3933. 2019-12-01 20:56:33.017 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3934. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  3935. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3936. )
  3937. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  3938. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  3939. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  3940. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  3941. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3942. 2019-12-01 20:56:33.018 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  3943. 2019-12-01 20:56:33.019 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'SSLAuthenticator'
  3944. 2019-12-01 20:56:33.019 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=SSLAuthenticator)
  3945. 2019-12-01 20:56:33.019 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users'
  3946. 2019-12-01 20:56:33.019 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users)
  3947. 2019-12-01 20:56:33.019 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  3948. 2019-12-01 20:56:33.021 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  3949. 2019-12-01 20:56:33.021 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve'
  3950. 2019-12-01 20:56:33.021 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve)
  3951. 2019-12-01 20:56:33.021 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.SSLAuthenticator'
  3952. 2019-12-01 20:56:33.021 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.SSLAuthenticator)
  3953. 2019-12-01 20:56:33.022 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  3954. 2019-12-01 20:56:33.022 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3955. )
  3956. 2019-12-01 20:56:33.022 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3957. 2019-12-01 20:56:33.022 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3958. 2019-12-01 20:56:33.019 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$61c0d6a8
  3959. 2019-12-01 20:56:33.022 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$61c0d6a8'
  3960. 2019-12-01 20:56:33.026 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$c3c86b4f
  3961. 2019-12-01 20:56:33.026 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$c3c86b4f'
  3962. 2019-12-01 20:56:33.029 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$$EnhancerBySpringCGLIB$$239b9c
  3963. 2019-12-01 20:56:33.029 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$$EnhancerBySpringCGLIB$$239b9c'
  3964. 2019-12-01 20:56:33.032 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration$$EnhancerBySpringCGLIB$$82c0d769
  3965. 2019-12-01 20:56:33.034 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3966. 2019-12-01 20:56:33.034 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3967. 2019-12-01 20:56:33.034 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3968. 2019-12-01 20:56:33.034 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3969. 2019-12-01 20:56:33.034 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache'
  3970. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache)
  3971. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?'
  3972. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?)
  3973. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  3974. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  3975. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3976. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  3977. 2019-12-01 20:56:33.035 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  3978. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  3979. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3980. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  3981. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3982. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  3983. 2019-12-01 20:56:33.036 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4399dfb3)
  3984. 2019-12-01 20:56:33.041 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  3985. 2019-12-01 20:56:33.041 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  3986. 2019-12-01 20:56:33.041 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3987. 2019-12-01 20:56:33.041 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  3988. 2019-12-01 20:56:33.041 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  3989. )
  3990. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  3991. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  3992. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  3993. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  3994. 2019-12-01 20:56:33.042 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration$$EnhancerBySpringCGLIB$$82c0d769'
  3995. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  3996. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  3997. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication'
  3998. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication)
  3999. 2019-12-01 20:56:33.042 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated'
  4000. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated)
  4001. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4002. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4003. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4004. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4005. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4006. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4007. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4008. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4009. 2019-12-01 20:56:33.043 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4010. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4011. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@74bcd0aa)
  4012. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4013. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4014. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4015. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4016. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4017. )
  4018. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4019. 2019-12-01 20:56:33.044 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4020. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4021. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4022. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4023. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4024. 2019-12-01 20:56:33.045 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration$$EnhancerBySpringCGLIB$$1ca132dc
  4025. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  4026. 2019-12-01 20:56:33.045 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration$$EnhancerBySpringCGLIB$$1ca132dc'
  4027. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  4028. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  4029. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  4030. 2019-12-01 20:56:33.045 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4031. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4032. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4033. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4034. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4035. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4036. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4037. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4038. 2019-12-01 20:56:33.046 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4039. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4040. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4041. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4042. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f63bae1)
  4043. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4044. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4045. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4046. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4047. 2019-12-01 20:56:33.047 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4048. )
  4049. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4050. 2019-12-01 20:56:33.048 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$52022104
  4051. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4052. 2019-12-01 20:56:33.048 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$52022104'
  4053. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4054. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4055. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4056. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4057. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching'
  4058. 2019-12-01 20:56:33.048 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching)
  4059. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  4060. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  4061. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4062. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4063. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4064. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4065. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4066. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4067. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4068. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4069. 2019-12-01 20:56:33.049 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4070. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4071. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b036af5)
  4072. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4073. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4074. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4075. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4076. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4077. )
  4078. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4079. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4080. 2019-12-01 20:56:33.050 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4081. 2019-12-01 20:56:33.051 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4082. 2019-12-01 20:56:33.051 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$3d6d4c64
  4083. 2019-12-01 20:56:33.051 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$3d6d4c64'
  4084. 2019-12-01 20:56:33.054 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4085. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4086. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma'
  4087. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma)
  4088. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints'
  4089. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints)
  4090. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4091. 2019-12-01 20:56:33.055 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4092. 2019-12-01 20:56:33.056 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4093. 2019-12-01 20:56:33.056 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4094. 2019-12-01 20:56:33.056 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4095. 2019-12-01 20:56:33.058 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4096. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4097. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4098. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4099. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4100. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@366a4e61)
  4101. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4102. 2019-12-01 20:56:33.059 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4103. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4104. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4105. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4106. )
  4107. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4108. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4109. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4110. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4111. 2019-12-01 20:56:33.060 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4112. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4113. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm'
  4114. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm)
  4115. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation'
  4116. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation)
  4117. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4118. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4119. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4120. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4121. 2019-12-01 20:56:33.061 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4122. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4123. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4124. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4125. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4126. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4127. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2441f186)
  4128. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4129. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4130. 2019-12-01 20:56:33.062 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4131. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4132. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4133. )
  4134. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4135. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4136. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4137. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4138. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4139. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4140. 2019-12-01 20:56:33.063 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass'
  4141. 2019-12-01 20:56:33.064 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass)
  4142. 2019-12-01 20:56:33.064 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation'
  4143. 2019-12-01 20:56:33.064 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation)
  4144. 2019-12-01 20:56:33.064 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4145. 2019-12-01 20:56:33.064 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4146. 2019-12-01 20:56:33.065 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4147. 2019-12-01 20:56:33.065 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4148. 2019-12-01 20:56:33.065 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4149. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4150. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4151. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4152. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4153. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4154. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66b7f35d)
  4155. 2019-12-01 20:56:33.066 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4156. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4157. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4158. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4159. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4160. )
  4161. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4162. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4163. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4164. 2019-12-01 20:56:33.067 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4165. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4166. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4167. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider'
  4168. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider)
  4169. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation'
  4170. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation)
  4171. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4172. 2019-12-01 20:56:33.068 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4173. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4174. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4175. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4176. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4177. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4178. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4179. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4180. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4181. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@46c369bc)
  4182. 2019-12-01 20:56:33.069 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4183. 2019-12-01 20:56:33.069 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration$$EnhancerBySpringCGLIB$$daef6a8a
  4184. 2019-12-01 20:56:33.070 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration$$EnhancerBySpringCGLIB$$daef6a8a'
  4185. 2019-12-01 20:56:33.081 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4186. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4187. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4188. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4189. )
  4190. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4191. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4192. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4193. 2019-12-01 20:56:33.082 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4194. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4195. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4196. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  4197. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  4198. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  4199. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  4200. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4201. 2019-12-01 20:56:33.083 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4202. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4203. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4204. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4205. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4206. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4207. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4208. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4209. 2019-12-01 20:56:33.084 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4210. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4211. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4212. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22be3e43)
  4213. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4214. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4215. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4216. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4217. 2019-12-01 20:56:33.085 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4218. )
  4219. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  4220. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  4221. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  4222. '
  4223. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4224. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4225. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4226. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4227. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=SSLAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users, group=Valve, type=org.apache.catalina.authenticator.SSLAuthenticator])
  4228. 2019-12-01 20:56:33.086 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  4229. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4230. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4231. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  4232. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4233. )
  4234. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors)
  4235. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors'
  4236. 2019-12-01 20:56:33.087 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  4237. '
  4238. 2019-12-01 20:56:33.088 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching 'mbeans-descriptors'.
  4239. 2019-12-01 20:56:33.088 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument()
  4240. 2019-12-01 20:56:33.088 DEBUG 1725 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/Users/dali/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar!/org/apache/catalina/core/mbeans-descriptors.xml
  4241. 2019-12-01 20:56:33.097 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@50ac013e)
  4242. 2019-12-01 20:56:33.097 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument()
  4243. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors)
  4244. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors'
  4245. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching 'mbeans-descriptors'.
  4246. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4247. )
  4248. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  4249. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  4250. 2019-12-01 20:56:33.098 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4251. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  4252. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4253. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  4254. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ApplicationFilterConfig'
  4255. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ApplicationFilterConfig)
  4256. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Wrapper that represents an individual servlet-filter definition'
  4257. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Wrapper that represents an individual servlet-filter definition)
  4258. 2019-12-01 20:56:33.099 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  4259. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  4260. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Filter'
  4261. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Filter)
  4262. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.ApplicationFilterConfig'
  4263. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.ApplicationFilterConfig)
  4264. 2019-12-01 20:56:33.100 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4265. 2019-12-01 20:56:33.102 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration$$EnhancerBySpringCGLIB$$7cae975f
  4266. 2019-12-01 20:56:33.102 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration$$EnhancerBySpringCGLIB$$7cae975f'
  4267. 2019-12-01 20:56:33.107 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$EnhancerBySpringCGLIB$$1eb26244
  4268. 2019-12-01 20:56:33.107 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' existing class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$EnhancerBySpringCGLIB$$1eb26244'
  4269. 2019-12-01 20:56:33.109 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4270. )
  4271. 2019-12-01 20:56:33.109 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4272. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4273. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4274. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4275. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4276. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4277. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterName'
  4278. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterName)
  4279. 2019-12-01 20:56:33.110 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name used to reference the filter in web.xml'
  4280. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name used to reference the filter in web.xml)
  4281. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4282. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4283. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4284. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4285. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4286. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4287. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4288. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4289. 2019-12-01 20:56:33.111 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4290. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4291. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4292. 2019-12-01 20:56:33.112 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$$EnhancerBySpringCGLIB$$46038556
  4293. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4294. 2019-12-01 20:56:33.112 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$$EnhancerBySpringCGLIB$$46038556'
  4295. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d7f1c1e)
  4296. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4297. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4298. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4299. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4300. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4301. )
  4302. 2019-12-01 20:56:33.112 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4303. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4304. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4305. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4306. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4307. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4308. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterClass'
  4309. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterClass)
  4310. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the filter object'
  4311. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the filter object)
  4312. 2019-12-01 20:56:33.113 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4313. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4314. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4315. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4316. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4317. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4318. 2019-12-01 20:56:33.114 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4319. 2019-12-01 20:56:33.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4320. 2019-12-01 20:56:33.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4321. 2019-12-01 20:56:33.115 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4322. 2019-12-01 20:56:33.115 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration$$EnhancerBySpringCGLIB$$14ad22d
  4323. 2019-12-01 20:56:33.115 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration$$EnhancerBySpringCGLIB$$14ad22d'
  4324. 2019-12-01 20:56:33.118 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration$$EnhancerBySpringCGLIB$$507c5a69
  4325. 2019-12-01 20:56:33.118 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration$$EnhancerBySpringCGLIB$$507c5a69'
  4326. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4327. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4328. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5ee067d4)
  4329. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4330. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4331. 2019-12-01 20:56:33.119 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4332. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4333. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4334. )
  4335. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4336. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4337. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4338. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4339. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4340. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4341. 2019-12-01 20:56:33.120 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterInitParameterMap'
  4342. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterInitParameterMap)
  4343. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Return the initialization parameters associated with this filter'
  4344. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Return the initialization parameters associated with this filter)
  4345. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.util.Map'
  4346. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.util.Map)
  4347. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4348. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4349. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4350. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4351. 2019-12-01 20:56:33.121 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4352. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4353. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4354. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4355. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4356. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4357. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@16c228f5)
  4358. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4359. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4360. 2019-12-01 20:56:33.122 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4361. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4362. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4363. )
  4364. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  4365. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  4366. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  4367. '
  4368. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4369. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4370. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4371. 2019-12-01 20:56:33.123 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4372. 2019-12-01 20:56:33.124 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ApplicationFilterConfig, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Wrapper that represents an individual servlet-filter definition, group=Filter, type=org.apache.catalina.core.ApplicationFilterConfig])
  4373. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  4374. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4375. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4376. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  4377. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4378. )
  4379. 2019-12-01 20:56:33.125 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$$EnhancerBySpringCGLIB$$dab86e78
  4380. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  4381. 2019-12-01 20:56:33.125 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$$EnhancerBySpringCGLIB$$dab86e78'
  4382. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  4383. 2019-12-01 20:56:33.125 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4384. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  4385. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4386. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  4387. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NamingContextListener'
  4388. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NamingContextListener)
  4389. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Helper class used to initialize and populate the JNDI context associated with each context and server'
  4390. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Helper class used to initialize and populate the JNDI context associated with each context and server)
  4391. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  4392. 2019-12-01 20:56:33.126 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  4393. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Listener'
  4394. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Listener)
  4395. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.NamingContextListener'
  4396. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.NamingContextListener)
  4397. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4398. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4399. )
  4400. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4401. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4402. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4403. 2019-12-01 20:56:33.127 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4404. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4405. 2019-12-01 20:56:33.128 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$1fa18889
  4406. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4407. 2019-12-01 20:56:33.128 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$1fa18889'
  4408. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className'
  4409. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className)
  4410. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object'
  4411. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object)
  4412. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4413. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4414. 2019-12-01 20:56:33.128 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4415. 2019-12-01 20:56:33.129 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4416. 2019-12-01 20:56:33.130 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration$$EnhancerBySpringCGLIB$$183e5a6
  4417. 2019-12-01 20:56:33.130 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration$$EnhancerBySpringCGLIB$$183e5a6'
  4418. 2019-12-01 20:56:33.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4419. 2019-12-01 20:56:33.132 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4420. 2019-12-01 20:56:33.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4421. 2019-12-01 20:56:33.132 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration$$EnhancerBySpringCGLIB$$6d54c670
  4422. 2019-12-01 20:56:33.132 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration$$EnhancerBySpringCGLIB$$6d54c670'
  4423. 2019-12-01 20:56:33.135 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$$EnhancerBySpringCGLIB$$4f6063ff
  4424. 2019-12-01 20:56:33.135 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$$EnhancerBySpringCGLIB$$4f6063ff'
  4425. 2019-12-01 20:56:33.132 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4426. 2019-12-01 20:56:33.137 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$5f02d913
  4427. 2019-12-01 20:56:33.137 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4428. 2019-12-01 20:56:33.137 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' existing class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$5f02d913'
  4429. 2019-12-01 20:56:33.137 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4430. 2019-12-01 20:56:33.137 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4431. 2019-12-01 20:56:33.137 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4432. 2019-12-01 20:56:33.137 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@533d19ca)
  4433. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4434. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4435. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4436. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4437. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4438. )
  4439. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4440. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4441. 2019-12-01 20:56:33.138 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4442. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4443. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4444. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4445. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name'
  4446. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name)
  4447. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the associated naming context'
  4448. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the associated naming context)
  4449. 2019-12-01 20:56:33.139 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$98d8d513
  4450. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4451. 2019-12-01 20:56:33.139 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' existing class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$98d8d513'
  4452. 2019-12-01 20:56:33.139 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4453. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4454. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4455. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4456. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4457. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4458. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4459. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4460. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4461. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4462. 2019-12-01 20:56:33.140 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4463. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ebe0abe)
  4464. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4465. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4466. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4467. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4468. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4469. )
  4470. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean)
  4471. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean'
  4472. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  4473. '
  4474. 2019-12-01 20:56:33.141 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4475. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4476. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4477. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4478. 2019-12-01 20:56:33.142 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$$EnhancerBySpringCGLIB$$8f4c08a1
  4479. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NamingContextListener, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Helper class used to initialize and populate the JNDI context associated with each context and server, group=Listener, type=org.apache.catalina.core.NamingContextListener])
  4480. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object
  4481. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4482. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4483. 2019-12-01 20:56:33.142 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' existing class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$$EnhancerBySpringCGLIB$$8f4c08a1'
  4484. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean
  4485. 2019-12-01 20:56:33.142 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4486. )
  4487. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean)
  4488. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean'
  4489. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null]
  4490. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean
  4491. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4492. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties
  4493. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardContext'
  4494. 2019-12-01 20:56:33.143 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardContext)
  4495. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Context Component'
  4496. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Context Component)
  4497. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina'
  4498. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina)
  4499. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Context'
  4500. 2019-12-01 20:56:33.144 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration$$EnhancerBySpringCGLIB$$76725d4d
  4501. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Context)
  4502. 2019-12-01 20:56:33.144 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration' existing class 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration$$EnhancerBySpringCGLIB$$76725d4d'
  4503. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardContext'
  4504. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardContext)
  4505. 2019-12-01 20:56:33.144 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContextMBean'
  4506. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContextMBean)
  4507. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object]
  4508. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4509. )
  4510. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4511. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4512. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4513. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4514. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4515. 2019-12-01 20:56:33.145 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4516. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'altDDName'
  4517. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=altDDName)
  4518. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The alternate deployment descriptor name.'
  4519. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The alternate deployment descriptor name.)
  4520. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4521. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4522. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4523. 2019-12-01 20:56:33.146 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$2bf51273
  4524. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4525. 2019-12-01 20:56:33.146 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$2bf51273'
  4526. 2019-12-01 20:56:33.146 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4527. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4528. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4529. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4530. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4531. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4532. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@9bc0e1c)
  4533. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4534. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4535. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4536. 2019-12-01 20:56:33.147 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4537. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4538. )
  4539. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4540. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4541. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4542. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4543. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4544. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4545. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'antiResourceLocking'
  4546. 2019-12-01 20:56:33.148 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=antiResourceLocking)
  4547. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Take care to not lock resources'
  4548. 2019-12-01 20:56:33.149 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration$$EnhancerBySpringCGLIB$$799b622b
  4549. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Take care to not lock resources)
  4550. 2019-12-01 20:56:33.149 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' existing class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration$$EnhancerBySpringCGLIB$$799b622b'
  4551. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4552. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4553. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4554. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4555. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4556. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4557. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4558. 2019-12-01 20:56:33.149 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4559. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4560. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4561. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1481c1b7)
  4562. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4563. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4564. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4565. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4566. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4567. )
  4568. 2019-12-01 20:56:33.150 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4569. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4570. 2019-12-01 20:56:33.151 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$$EnhancerBySpringCGLIB$$8468d9dc
  4571. 2019-12-01 20:56:33.151 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$$EnhancerBySpringCGLIB$$8468d9dc'
  4572. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4573. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4574. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4575. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4576. 2019-12-01 20:56:33.151 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'baseName'
  4577. 2019-12-01 20:56:33.152 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=baseName)
  4578. 2019-12-01 20:56:33.152 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The base name used for directories, WAR files (with .war appended) and context.xml files (with .xml appended).'
  4579. 2019-12-01 20:56:33.152 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The base name used for directories, WAR files (with .war appended) and context.xml files (with .xml appended).)
  4580. 2019-12-01 20:56:33.152 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4581. 2019-12-01 20:56:33.152 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4582. 2019-12-01 20:56:33.157 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4583. 2019-12-01 20:56:33.157 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4584. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4585. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4586. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4587. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4588. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4589. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4590. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4591. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4592. 2019-12-01 20:56:33.158 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2fc979a4)
  4593. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4594. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4595. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4596. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4597. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4598. )
  4599. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4600. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4601. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4602. 2019-12-01 20:56:33.159 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4603. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4604. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4605. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'children'
  4606. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=children)
  4607. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object names of all children'
  4608. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object names of all children)
  4609. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;'
  4610. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;)
  4611. 2019-12-01 20:56:33.160 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4612. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4613. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4614. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4615. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4616. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4617. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4618. 2019-12-01 20:56:33.161 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4619. 2019-12-01 20:56:33.161 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$4dbb53f8
  4620. 2019-12-01 20:56:33.161 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$4dbb53f8'
  4621. 2019-12-01 20:56:33.164 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$acd74060
  4622. 2019-12-01 20:56:33.164 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$acd74060'
  4623. 2019-12-01 20:56:33.166 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration$$EnhancerBySpringCGLIB$$17ecd3ad
  4624. 2019-12-01 20:56:33.167 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@51dc7d19)
  4625. 2019-12-01 20:56:33.167 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4626. 2019-12-01 20:56:33.167 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4627. 2019-12-01 20:56:33.167 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4628. 2019-12-01 20:56:33.167 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4629. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4630. )
  4631. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4632. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4633. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4634. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4635. 2019-12-01 20:56:33.168 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4636. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4637. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesRmiTargets'
  4638. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesRmiTargets)
  4639. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat look for memory leaks in RMI Targets and clear them if found as a work around for application coding errors?'
  4640. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat look for memory leaks in RMI Targets and clear them if found as a work around for application coding errors?)
  4641. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4642. 2019-12-01 20:56:33.169 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4643. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4644. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4645. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4646. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4647. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4648. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4649. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4650. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4651. 2019-12-01 20:56:33.170 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@387955d0)
  4652. 2019-12-01 20:56:33.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4653. 2019-12-01 20:56:33.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4654. 2019-12-01 20:56:33.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4655. 2019-12-01 20:56:33.171 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4656. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4657. )
  4658. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4659. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4660. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4661. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4662. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4663. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4664. 2019-12-01 20:56:33.172 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' existing class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration$$EnhancerBySpringCGLIB$$17ecd3ad'
  4665. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesStopThreads'
  4666. 2019-12-01 20:56:33.172 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesStopThreads)
  4667. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat attempt to terminate threads that have been started by the web application? Advisable to be used only in a development environment.'
  4668. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat attempt to terminate threads that have been started by the web application? Advisable to be used only in a development environment.)
  4669. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4670. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4671. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4672. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4673. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4674. 2019-12-01 20:56:33.173 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4675. 2019-12-01 20:56:33.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4676. 2019-12-01 20:56:33.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4677. 2019-12-01 20:56:33.174 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4678. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4679. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22efa711)
  4680. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4681. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4682. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4683. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4684. 2019-12-01 20:56:33.175 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4685. )
  4686. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4687. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4688. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4689. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4690. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4691. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4692. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesStopTimerThreads'
  4693. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesStopTimerThreads)
  4694. 2019-12-01 20:56:33.176 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$$EnhancerBySpringCGLIB$$272946c1
  4695. 2019-12-01 20:56:33.176 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat attempt to terminate TimerThreads that have been started by the web application? Advisable to be used only in a development environment.'
  4696. 2019-12-01 20:56:33.176 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$$EnhancerBySpringCGLIB$$272946c1'
  4697. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat attempt to terminate TimerThreads that have been started by the web application? Advisable to be used only in a development environment.)
  4698. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4699. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4700. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4701. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4702. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4703. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4704. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4705. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4706. 2019-12-01 20:56:33.177 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4707. 2019-12-01 20:56:33.178 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4708. 2019-12-01 20:56:33.179 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$e515fd81
  4709. 2019-12-01 20:56:33.179 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$e515fd81'
  4710. 2019-12-01 20:56:33.181 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassEnhancer : Successfully enhanced org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration; enhanced class name is: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$5406858e
  4711. 2019-12-01 20:56:33.181 DEBUG 1725 --- [main] o.s.c.a.ConfigurationClassPostProcessor : Replacing bean definition 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' existing class 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' with enhanced class 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$5406858e'
  4712. 2019-12-01 20:56:33.182 DEBUG 1725 --- [main] o.s.core.env.StandardEnvironment : Removing PropertySource 'defaultProperties'
  4713. 2019-12-01 20:56:33.183 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
  4714. 2019-12-01 20:56:33.183 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'propertySourcesPlaceholderConfigurer'
  4715. 2019-12-01 20:56:33.185 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@460ffeb1)
  4716. 2019-12-01 20:56:33.185 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4717. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4718. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4719. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4720. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4721. )
  4722. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4723. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4724. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4725. 2019-12-01 20:56:33.186 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4726. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4727. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4728. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configFile'
  4729. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configFile)
  4730. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the context.xml resource or file'
  4731. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the context.xml resource or file)
  4732. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.net.URL'
  4733. 2019-12-01 20:56:33.187 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.net.URL)
  4734. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4735. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4736. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4737. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4738. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4739. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4740. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4741. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4742. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@748967dc)
  4743. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4744. 2019-12-01 20:56:33.188 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4745. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4746. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4747. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4748. )
  4749. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4750. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4751. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4752. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4753. 2019-12-01 20:56:33.189 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4754. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4755. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configured'
  4756. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configured)
  4757. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The correctly configured flag for this Context.'
  4758. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The correctly configured flag for this Context.)
  4759. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4760. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4761. 2019-12-01 20:56:33.190 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  4762. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  4763. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4764. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4765. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4766. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4767. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4768. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4769. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4770. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4771. 2019-12-01 20:56:33.191 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6ac6b48)
  4772. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4773. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4774. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4775. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4776. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4777. )
  4778. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4779. 2019-12-01 20:56:33.192 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4780. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4781. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4782. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4783. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4784. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cookies'
  4785. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cookies)
  4786. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we attempt to use cookies for session id communication?'
  4787. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we attempt to use cookies for session id communication?)
  4788. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4789. 2019-12-01 20:56:33.193 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4790. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4791. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4792. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4793. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4794. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4795. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4796. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4797. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4798. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@592483a3)
  4799. 2019-12-01 20:56:33.194 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4800. 2019-12-01 20:56:33.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4801. 2019-12-01 20:56:33.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4802. 2019-12-01 20:56:33.195 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4803. 2019-12-01 20:56:33.195 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4804. )
  4805. 2019-12-01 20:56:33.195 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4806. 2019-12-01 20:56:33.197 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'propertySourcesPlaceholderConfigurer' to allow for resolving potential circular references
  4807. 2019-12-01 20:56:33.205 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4808. 2019-12-01 20:56:33.206 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4809. 2019-12-01 20:56:33.206 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4810. 2019-12-01 20:56:33.206 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4811. 2019-12-01 20:56:33.207 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4812. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'crossContext'
  4813. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=crossContext)
  4814. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we allow the ServletContext.getContext() method to access the context of other web applications in this server?'
  4815. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we allow the ServletContext.getContext() method to access the context of other web applications in this server?)
  4816. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4817. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4818. 2019-12-01 20:56:33.208 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4819. 2019-12-01 20:56:33.209 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4820. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4821. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4822. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4823. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4824. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4825. 2019-12-01 20:56:33.214 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4826. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@60671440)
  4827. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4828. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4829. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4830. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4831. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4832. )
  4833. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4834. 2019-12-01 20:56:33.215 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4835. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4836. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4837. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4838. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4839. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultContextXml'
  4840. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultContextXml)
  4841. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the default context.xml resource or file'
  4842. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the default context.xml resource or file)
  4843. 2019-12-01 20:56:33.216 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4844. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4845. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4846. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4847. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4848. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4849. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4850. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4851. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4852. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4853. 2019-12-01 20:56:33.217 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5fef2817)
  4854. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4855. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4856. 2019-12-01 20:56:33.212 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'propertySourcesPlaceholderConfigurer'
  4857. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4858. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4859. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4860. )
  4861. 2019-12-01 20:56:33.218 DEBUG 1725 --- [main] o.s.core.env.MutablePropertySources : Adding PropertySource 'environmentProperties' with lowest search precedence
  4862. 2019-12-01 20:56:33.218 DEBUG 1725 --- [main] o.s.core.env.MutablePropertySources : Adding PropertySource 'localProperties' with lowest search precedence
  4863. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4864. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4865. 2019-12-01 20:56:33.218 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4866. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4867. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4868. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4869. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultWebXml'
  4870. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultWebXml)
  4871. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the default web.xml resource or file'
  4872. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the default web.xml resource or file)
  4873. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4874. 2019-12-01 20:56:33.219 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4875. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4876. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4877. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4878. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4879. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4880. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4881. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4882. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4883. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3afcfe89)
  4884. 2019-12-01 20:56:33.220 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4885. 2019-12-01 20:56:33.221 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4886. 2019-12-01 20:56:33.221 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4887. 2019-12-01 20:56:33.221 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4888. 2019-12-01 20:56:33.221 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4889. )
  4890. 2019-12-01 20:56:33.222 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  4891. 2019-12-01 20:56:33.222 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  4892. 2019-12-01 20:56:33.224 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor' to allow for resolving potential circular references
  4893. 2019-12-01 20:56:33.225 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4894. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4895. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4896. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4897. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4898. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4899. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'delegate'
  4900. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=delegate)
  4901. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to ''
  4902. 2019-12-01 20:56:33.226 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=)
  4903. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4904. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4905. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4906. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4907. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4908. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4909. 2019-12-01 20:56:33.227 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4910. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4911. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4912. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4913. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@47384bee)
  4914. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4915. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4916. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4917. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4918. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4919. )
  4920. 2019-12-01 20:56:33.228 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4921. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4922. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4923. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4924. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4925. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4926. 2019-12-01 20:56:33.229 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'displayName'
  4927. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=displayName)
  4928. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The display name of this web application'
  4929. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The display name of this web application)
  4930. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4931. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4932. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4933. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4934. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4935. 2019-12-01 20:56:33.230 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4936. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4937. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4938. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4939. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4940. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1fa5925d)
  4941. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4942. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4943. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4944. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4945. 2019-12-01 20:56:33.231 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4946. )
  4947. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4948. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4949. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4950. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4951. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4952. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4953. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'distributable'
  4954. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=distributable)
  4955. 2019-12-01 20:56:33.232 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The distributable flag for this web application.'
  4956. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The distributable flag for this web application.)
  4957. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  4958. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  4959. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4960. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4961. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4962. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4963. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4964. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4965. 2019-12-01 20:56:33.233 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4966. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4967. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@392cae2e)
  4968. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4969. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4970. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4971. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4972. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  4973. )
  4974. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  4975. 2019-12-01 20:56:33.234 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  4976. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4977. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  4978. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  4979. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  4980. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'docBase'
  4981. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=docBase)
  4982. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The document root for this web application'
  4983. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The document root for this web application)
  4984. 2019-12-01 20:56:33.235 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  4985. 2019-12-01 20:56:33.236 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  4986. 2019-12-01 20:56:33.236 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4987. 2019-12-01 20:56:33.236 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  4988. 2019-12-01 20:56:33.236 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  4989. 2019-12-01 20:56:33.236 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  4990. 2019-12-01 20:56:33.241 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4991. 2019-12-01 20:56:33.241 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  4992. 2019-12-01 20:56:33.241 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4993. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  4994. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@64791734)
  4995. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  4996. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  4997. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  4998. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  4999. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5000. )
  5001. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5002. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5003. 2019-12-01 20:56:33.242 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5004. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5005. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5006. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5007. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'encodedPath'
  5008. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=encodedPath)
  5009. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The encoded path'
  5010. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The encoded path)
  5011. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5012. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5013. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5014. 2019-12-01 20:56:33.243 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5015. 2019-12-01 20:56:33.244 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5016. 2019-12-01 20:56:33.244 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5017. 2019-12-01 20:56:33.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5018. 2019-12-01 20:56:33.248 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5019. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5020. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5021. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5022. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5023. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@619b476e)
  5024. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5025. 2019-12-01 20:56:33.249 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5026. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5027. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5028. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5029. )
  5030. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5031. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5032. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5033. 2019-12-01 20:56:33.250 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5034. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5035. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5036. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ignoreAnnotations'
  5037. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ignoreAnnotations)
  5038. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Ignore annotations flag.'
  5039. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Ignore annotations flag.)
  5040. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5041. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5042. 2019-12-01 20:56:33.251 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5043. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5044. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5045. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5046. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5047. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5048. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5049. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5050. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@529f167a)
  5051. 2019-12-01 20:56:33.252 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5052. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5053. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5054. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5055. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5056. )
  5057. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5058. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5059. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5060. 2019-12-01 20:56:33.253 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5061. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5062. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5063. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'instanceManager'
  5064. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=instanceManager)
  5065. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object that creates and destroys servlets, filters, and listeners. Include dependency injection and postConstruct/preDestroy handling'
  5066. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object that creates and destroys servlets, filters, and listeners. Include dependency injection and postConstruct/preDestroy handling)
  5067. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.tomcat.InstanceManager'
  5068. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.tomcat.InstanceManager)
  5069. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5070. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5071. 2019-12-01 20:56:33.254 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5072. 2019-12-01 20:56:33.244 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  5073. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5074. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5075. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5076. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5077. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5078. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@e9e8fd9)
  5079. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5080. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5081. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5082. 2019-12-01 20:56:33.255 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5083. 2019-12-01 20:56:33.256 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5084. )
  5085. 2019-12-01 20:56:33.263 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5086. 2019-12-01 20:56:33.263 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5087. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5088. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5089. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5090. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5091. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'javaVMs'
  5092. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=javaVMs)
  5093. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Java virtual machines on which this module is running'
  5094. 2019-12-01 20:56:33.264 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Java virtual machines on which this module is running)
  5095. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;'
  5096. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;)
  5097. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5098. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5099. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5100. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5101. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5102. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5103. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5104. 2019-12-01 20:56:33.265 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5105. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22f2e989)
  5106. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5107. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5108. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5109. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5110. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5111. )
  5112. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5113. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5114. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5115. 2019-12-01 20:56:33.266 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5116. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5117. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5118. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loader'
  5119. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loader)
  5120. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated loader.'
  5121. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated loader.)
  5122. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Loader'
  5123. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Loader)
  5124. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5125. 2019-12-01 20:56:33.267 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5126. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5127. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5128. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5129. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5130. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5131. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5132. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19697a8e)
  5133. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5134. 2019-12-01 20:56:33.268 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5135. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5136. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5137. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5138. )
  5139. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5140. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5141. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5142. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5143. 2019-12-01 20:56:33.269 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5144. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5145. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'logEffectiveWebXml'
  5146. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=logEffectiveWebXml)
  5147. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the effective web.xml be logged when the context starts?'
  5148. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the effective web.xml be logged when the context starts?)
  5149. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5150. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5151. 2019-12-01 20:56:33.270 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5152. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5153. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5154. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5155. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5156. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5157. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5158. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5159. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@336f931f)
  5160. 2019-12-01 20:56:33.271 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5161. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5162. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5163. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5164. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5165. )
  5166. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5167. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5168. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5169. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5170. 2019-12-01 20:56:33.272 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5171. 2019-12-01 20:56:33.273 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5172. 2019-12-01 20:56:33.273 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'logger'
  5173. 2019-12-01 20:56:33.273 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=logger)
  5174. 2019-12-01 20:56:33.283 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated logger.'
  5175. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated logger.)
  5176. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.juli.logging.Log'
  5177. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.juli.logging.Log)
  5178. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5179. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5180. 2019-12-01 20:56:33.284 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5181. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5182. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5183. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5184. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5185. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5186. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@49f532ec)
  5187. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5188. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5189. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5190. 2019-12-01 20:56:33.285 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5191. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5192. )
  5193. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5194. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5195. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5196. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5197. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5198. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5199. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource'
  5200. 2019-12-01 20:56:33.286 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource)
  5201. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with'
  5202. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with)
  5203. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object'
  5204. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object)
  5205. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5206. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5207. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5208. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5209. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5210. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5211. 2019-12-01 20:56:33.287 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5212. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5213. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7cfe24fa)
  5214. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5215. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5216. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5217. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5218. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5219. )
  5220. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5221. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5222. 2019-12-01 20:56:33.288 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5223. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5224. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5225. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5226. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'manager'
  5227. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=manager)
  5228. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated manager.'
  5229. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated manager.)
  5230. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Manager'
  5231. 2019-12-01 20:56:33.289 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Manager)
  5232. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5233. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5234. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5235. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5236. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5237. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5238. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5239. 2019-12-01 20:56:33.290 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5240. 2019-12-01 20:56:33.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e118ce1)
  5241. 2019-12-01 20:56:33.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5242. 2019-12-01 20:56:33.291 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5243. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5244. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5245. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5246. )
  5247. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5248. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5249. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5250. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5251. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5252. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5253. 2019-12-01 20:56:33.292 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'mapperContextRootRedirectEnabled'
  5254. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=mapperContextRootRedirectEnabled)
  5255. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the Mapper be used for context root redirects'
  5256. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the Mapper be used for context root redirects)
  5257. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5258. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5259. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5260. 2019-12-01 20:56:33.293 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5261. 2019-12-01 20:56:33.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5262. 2019-12-01 20:56:33.298 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5263. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5264. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5265. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5266. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5267. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@61a90557)
  5268. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5269. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5270. 2019-12-01 20:56:33.299 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5271. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5272. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5273. )
  5274. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5275. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5276. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5277. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5278. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5279. 2019-12-01 20:56:33.300 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5280. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'mapperDirectoryRedirectEnabled'
  5281. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=mapperDirectoryRedirectEnabled)
  5282. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the Mapper be used for directory redirects'
  5283. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the Mapper be used for directory redirects)
  5284. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5285. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5286. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5287. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5288. 2019-12-01 20:56:33.301 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5289. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5290. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5291. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5292. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5293. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5294. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12b29dc)
  5295. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5296. 2019-12-01 20:56:33.302 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5297. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5298. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5299. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5300. )
  5301. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5302. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5303. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5304. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5305. 2019-12-01 20:56:33.303 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5306. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5307. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'namingContextListener'
  5308. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=namingContextListener)
  5309. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated naming context listener.'
  5310. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated naming context listener.)
  5311. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.core.NamingContextListener'
  5312. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.core.NamingContextListener)
  5313. 2019-12-01 20:56:33.304 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5314. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5315. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5316. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5317. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5318. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5319. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5320. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5321. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@cff04f7)
  5322. 2019-12-01 20:56:33.305 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5323. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5324. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5325. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5326. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5327. )
  5328. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5329. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5330. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5331. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5332. 2019-12-01 20:56:33.306 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5333. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5334. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'objectName'
  5335. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=objectName)
  5336. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the object'
  5337. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the object)
  5338. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5339. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5340. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5341. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5342. 2019-12-01 20:56:33.307 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5343. 2019-12-01 20:56:33.308 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5344. 2019-12-01 20:56:33.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5345. 2019-12-01 20:56:33.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5346. 2019-12-01 20:56:33.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5347. 2019-12-01 20:56:33.308 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5348. 2019-12-01 20:56:33.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5349. 2019-12-01 20:56:33.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5350. 2019-12-01 20:56:33.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2eabf70d)
  5351. 2019-12-01 20:56:33.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5352. 2019-12-01 20:56:33.313 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5353. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5354. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5355. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5356. )
  5357. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5358. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5359. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5360. 2019-12-01 20:56:33.314 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5361. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5362. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5363. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'originalDocBase'
  5364. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=originalDocBase)
  5365. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The original document root for this web application'
  5366. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The original document root for this web application)
  5367. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5368. 2019-12-01 20:56:33.315 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5369. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5370. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5371. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5372. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5373. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5374. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5375. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5376. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5377. 2019-12-01 20:56:33.316 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@781cc32)
  5378. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5379. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5380. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5381. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5382. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5383. )
  5384. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5385. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5386. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5387. 2019-12-01 20:56:33.317 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5388. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5389. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5390. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'override'
  5391. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=override)
  5392. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The default context.xml override flag for this web application'
  5393. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The default context.xml override flag for this web application)
  5394. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5395. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5396. 2019-12-01 20:56:33.318 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5397. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5398. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5399. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5400. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5401. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5402. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5403. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5404. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5fbc70d7)
  5405. 2019-12-01 20:56:33.319 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5406. 2019-12-01 20:56:33.320 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5407. 2019-12-01 20:56:33.320 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5408. 2019-12-01 20:56:33.320 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5409. 2019-12-01 20:56:33.320 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5410. )
  5411. 2019-12-01 20:56:33.320 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5412. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5413. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5414. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5415. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5416. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5417. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name'
  5418. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name)
  5419. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of this Context'
  5420. 2019-12-01 20:56:33.321 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of this Context)
  5421. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5422. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5423. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5424. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5425. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5426. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5427. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5428. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5429. 2019-12-01 20:56:33.322 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5430. 2019-12-01 20:56:33.336 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
  5431. 2019-12-01 20:56:33.336 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
  5432. 2019-12-01 20:56:33.336 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata' to allow for resolving potential circular references
  5433. 2019-12-01 20:56:33.352 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
  5434. 2019-12-01 20:56:33.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5435. 2019-12-01 20:56:33.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
  5436. 2019-12-01 20:56:33.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'preserveErrorControllerTargetClassPostProcessor'
  5437. 2019-12-01 20:56:33.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2b900f6b)
  5438. 2019-12-01 20:56:33.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5439. 2019-12-01 20:56:33.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5440. 2019-12-01 20:56:33.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'preserveErrorControllerTargetClassPostProcessor' to allow for resolving potential circular references
  5441. 2019-12-01 20:56:33.353 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5442. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5443. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5444. )
  5445. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5446. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5447. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5448. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5449. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5450. 2019-12-01 20:56:33.354 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5451. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'parentClassLoader'
  5452. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=parentClassLoader)
  5453. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Parent class loader.'
  5454. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Parent class loader.)
  5455. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.ClassLoader'
  5456. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.ClassLoader)
  5457. 2019-12-01 20:56:33.355 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5458. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5459. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5460. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5461. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5462. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5463. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5464. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5465. 2019-12-01 20:56:33.356 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5af2868b)
  5466. 2019-12-01 20:56:33.357 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5467. 2019-12-01 20:56:33.357 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5468. 2019-12-01 20:56:33.357 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5469. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5470. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5471. )
  5472. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5473. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5474. 2019-12-01 20:56:33.358 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'preserveErrorControllerTargetClassPostProcessor'
  5475. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5476. 2019-12-01 20:56:33.358 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5477. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5478. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5479. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'path'
  5480. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=path)
  5481. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The context path for this Context'
  5482. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The context path for this Context)
  5483. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5484. 2019-12-01 20:56:33.359 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5485. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5486. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5487. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5488. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5489. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5490. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5491. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5492. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5493. 2019-12-01 20:56:33.360 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@539b31bb)
  5494. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5495. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5496. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5497. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5498. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5499. )
  5500. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5501. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5502. 2019-12-01 20:56:33.361 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5503. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5504. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5505. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5506. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'paused'
  5507. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=paused)
  5508. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The request processing pause flag (while reloading occurs)'
  5509. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The request processing pause flag (while reloading occurs))
  5510. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5511. 2019-12-01 20:56:33.362 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5512. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5513. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5514. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5515. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5516. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5517. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5518. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5519. 2019-12-01 20:56:33.363 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5520. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5521. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5522. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f9dd9d7)
  5523. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5524. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5525. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5526. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5527. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5528. )
  5529. 2019-12-01 20:56:33.364 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5530. 2019-12-01 20:56:33.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5531. 2019-12-01 20:56:33.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5532. 2019-12-01 20:56:33.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5533. 2019-12-01 20:56:33.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5534. 2019-12-01 20:56:33.365 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5535. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'privileged'
  5536. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=privileged)
  5537. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Access to tomcat internals'
  5538. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Access to tomcat internals)
  5539. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5540. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5541. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5542. 2019-12-01 20:56:33.366 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5543. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5544. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5545. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5546. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5547. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5548. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5549. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@44dd7818)
  5550. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5551. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5552. 2019-12-01 20:56:33.367 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5553. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5554. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5555. )
  5556. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5557. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5558. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5559. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5560. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5561. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5562. 2019-12-01 20:56:33.368 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime'
  5563. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime)
  5564. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative execution times of all servlets in this context'
  5565. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative execution times of all servlets in this context)
  5566. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  5567. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  5568. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5569. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5570. 2019-12-01 20:56:33.369 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5571. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5572. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5573. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5574. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5575. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5576. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5577. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5578. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ad568d6)
  5579. 2019-12-01 20:56:33.370 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5580. 2019-12-01 20:56:33.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5581. 2019-12-01 20:56:33.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5582. 2019-12-01 20:56:33.371 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5583. 2019-12-01 20:56:33.371 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5584. )
  5585. 2019-12-01 20:56:33.371 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5586. 2019-12-01 20:56:33.372 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5587. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5588. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5589. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5590. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5591. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxTime'
  5592. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxTime)
  5593. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum execution time of all servlets in this context'
  5594. 2019-12-01 20:56:33.373 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum execution time of all servlets in this context)
  5595. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  5596. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  5597. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5598. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5599. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5600. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5601. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5602. 2019-12-01 20:56:33.374 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5603. 2019-12-01 20:56:33.375 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5604. 2019-12-01 20:56:33.375 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5605. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5606. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5607. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@c986de)
  5608. 2019-12-01 20:56:33.376 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
  5609. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5610. 2019-12-01 20:56:33.377 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
  5611. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5612. 2019-12-01 20:56:33.377 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  5613. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5614. 2019-12-01 20:56:33.377 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5615. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5616. )
  5617. 2019-12-01 20:56:33.378 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor' to allow for resolving potential circular references
  5618. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5619. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5620. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5621. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5622. 2019-12-01 20:56:33.378 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5623. 2019-12-01 20:56:33.379 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5624. 2019-12-01 20:56:33.379 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minTime'
  5625. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minTime)
  5626. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Minimum execution time of all servlets in this context'
  5627. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Minimum execution time of all servlets in this context)
  5628. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  5629. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  5630. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5631. 2019-12-01 20:56:33.380 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5632. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5633. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5634. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5635. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5636. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5637. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5638. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5639. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5640. 2019-12-01 20:56:33.381 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19ba471)
  5641. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5642. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5643. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5644. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5645. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5646. )
  5647. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5648. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5649. 2019-12-01 20:56:33.382 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5650. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5651. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5652. 2019-12-01 20:56:33.383 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
  5653. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5654. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requestCount'
  5655. 2019-12-01 20:56:33.383 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  5656. 2019-12-01 20:56:33.383 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  5657. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requestCount)
  5658. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative request count of all servlets in this context'
  5659. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative request count of all servlets in this context)
  5660. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int'
  5661. 2019-12-01 20:56:33.383 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int)
  5662. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5663. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5664. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5665. 2019-12-01 20:56:33.384 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
  5666. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5667. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5668. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5669. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5670. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5671. 2019-12-01 20:56:33.384 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5672. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5673. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e2911e2)
  5674. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5675. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5676. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5677. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5678. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5679. )
  5680. 2019-12-01 20:56:33.385 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5681. 2019-12-01 20:56:33.392 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5682. 2019-12-01 20:56:33.392 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5683. 2019-12-01 20:56:33.392 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5684. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5685. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5686. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'errorCount'
  5687. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=errorCount)
  5688. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative error count of all servlets in this context'
  5689. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative error count of all servlets in this context)
  5690. 2019-12-01 20:56:33.393 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int'
  5691. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int)
  5692. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5693. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5694. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5695. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5696. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5697. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5698. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5699. 2019-12-01 20:56:33.394 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5700. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5701. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5702. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@f9b5f29)
  5703. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5704. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5705. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5706. 2019-12-01 20:56:33.395 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5707. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5708. )
  5709. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5710. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5711. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5712. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5713. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5714. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5715. 2019-12-01 20:56:33.396 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'publicId'
  5716. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=publicId)
  5717. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The public identifier of the DTD for the web application deployment descriptor version that is being parsed'
  5718. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The public identifier of the DTD for the web application deployment descriptor version that is being parsed)
  5719. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5720. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5721. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5722. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5723. 2019-12-01 20:56:33.397 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5724. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5725. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5726. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5727. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5728. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5729. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5730. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5731. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@43a8d772)
  5732. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5733. 2019-12-01 20:56:33.398 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5734. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5735. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5736. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5737. )
  5738. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5739. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5740. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5741. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5742. 2019-12-01 20:56:33.399 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5743. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5744. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realm'
  5745. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realm)
  5746. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated realm.'
  5747. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated realm.)
  5748. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Realm'
  5749. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Realm)
  5750. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5751. 2019-12-01 20:56:33.400 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5752. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5753. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5754. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5755. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5756. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5757. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5758. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1f4c5b5a)
  5759. 2019-12-01 20:56:33.401 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5760. 2019-12-01 20:56:33.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5761. 2019-12-01 20:56:33.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5762. 2019-12-01 20:56:33.402 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5763. 2019-12-01 20:56:33.402 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5764. )
  5765. 2019-12-01 20:56:33.402 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  5766. 2019-12-01 20:56:33.403 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  5767. 2019-12-01 20:56:33.403 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  5768. 2019-12-01 20:56:33.403 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
  5769. 2019-12-01 20:56:33.409 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5770. 2019-12-01 20:56:33.410 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5771. 2019-12-01 20:56:33.410 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5772. 2019-12-01 20:56:33.410 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5773. 2019-12-01 20:56:33.410 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5774. 2019-12-01 20:56:33.410 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5775. 2019-12-01 20:56:33.411 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'reloadable'
  5776. 2019-12-01 20:56:33.411 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=reloadable)
  5777. 2019-12-01 20:56:33.411 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The reloadable flag for this web application'
  5778. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The reloadable flag for this web application)
  5779. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5780. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5781. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5782. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5783. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5784. 2019-12-01 20:56:33.412 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5785. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5786. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5787. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5788. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5789. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@798cef50)
  5790. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5791. 2019-12-01 20:56:33.413 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5792. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5793. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5794. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5795. )
  5796. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5797. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5798. 2019-12-01 20:56:33.414 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5799. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5800. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5801. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5802. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'renewThreadsWhenStoppingContext'
  5803. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=renewThreadsWhenStoppingContext)
  5804. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat renew the threads of the thread pool when the application is stopped to avoid memory leaks because of uncleaned ThreadLocal variables.'
  5805. 2019-12-01 20:56:33.415 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat renew the threads of the thread pool when the application is stopped to avoid memory leaks because of uncleaned ThreadLocal variables.)
  5806. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  5807. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  5808. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5809. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5810. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5811. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5812. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5813. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5814. 2019-12-01 20:56:33.416 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5815. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5816. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2c3b855f)
  5817. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5818. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5819. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5820. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5821. 2019-12-01 20:56:33.417 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5822. )
  5823. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5824. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5825. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5826. 2019-12-01 20:56:33.418 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  5827. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5828. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5829. 2019-12-01 20:56:33.418 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  5830. 2019-12-01 20:56:33.418 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  5831. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5832. 2019-12-01 20:56:33.418 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'server'
  5833. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=server)
  5834. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The J2EE Server this module is deployed on'
  5835. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The J2EE Server this module is deployed on)
  5836. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5837. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5838. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5839. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5840. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5841. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5842. 2019-12-01 20:56:33.419 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5843. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5844. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5845. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5846. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@29add4ed)
  5847. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5848. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5849. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5850. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5851. 2019-12-01 20:56:33.420 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5852. )
  5853. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5854. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5855. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5856. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5857. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5858. 2019-12-01 20:56:33.421 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5859. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookieName'
  5860. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookieName)
  5861. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name to use for session cookies.'null' indicates that the name is controlled by the application.'
  5862. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name to use for session cookies.'null' indicates that the name is controlled by the application.)
  5863. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5864. 2019-12-01 20:56:33.422 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5865. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5866. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5867. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5868. 2019-12-01 20:56:33.423 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
  5869. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5870. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5871. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5872. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5873. 2019-12-01 20:56:33.423 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5874. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@54c6dc09)
  5875. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5876. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5877. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5878. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5879. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5880. )
  5881. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5882. 2019-12-01 20:56:33.424 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5883. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5884. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5885. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5886. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5887. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookieDomain'
  5888. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookieDomain)
  5889. 2019-12-01 20:56:33.425 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The domain to use for session cookies.'null' indicates that the domain is controlled by the application.'
  5890. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The domain to use for session cookies.'null' indicates that the domain is controlled by the application.)
  5891. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5892. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5893. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5894. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5895. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5896. 2019-12-01 20:56:33.426 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5897. 2019-12-01 20:56:33.428 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5898. 2019-12-01 20:56:33.428 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5899. 2019-12-01 20:56:33.428 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5900. 2019-12-01 20:56:33.428 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5901. 2019-12-01 20:56:33.428 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4aae4fae)
  5902. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5903. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5904. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5905. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5906. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5907. )
  5908. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5909. 2019-12-01 20:56:33.429 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5910. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5911. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5912. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5913. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5914. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookiePath'
  5915. 2019-12-01 20:56:33.430 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookiePath)
  5916. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The path to use for session cookies.'null' indicates that the path is controlled by the application.'
  5917. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The path to use for session cookies.'null' indicates that the path is controlled by the application.)
  5918. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  5919. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  5920. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5921. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5922. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5923. 2019-12-01 20:56:33.431 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5924. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5925. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5926. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5927. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5928. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3a4f3ad9)
  5929. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5930. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5931. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5932. 2019-12-01 20:56:33.432 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5933. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5934. )
  5935. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5936. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5937. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5938. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5939. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5940. 2019-12-01 20:56:33.433 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  5941. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5942. 2019-12-01 20:56:33.433 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionTimeout'
  5943. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionTimeout)
  5944. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The session timeout (in minutes) for this web application'
  5945. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The session timeout (in minutes) for this web application)
  5946. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int'
  5947. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int)
  5948. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5949. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5950. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5951. 2019-12-01 20:56:33.434 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5952. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5953. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5954. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5955. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5956. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d828bc1)
  5957. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5958. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5959. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5960. 2019-12-01 20:56:33.435 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5961. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5962. )
  5963. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5964. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5965. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5966. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5967. 2019-12-01 20:56:33.436 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5968. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5969. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startTime'
  5970. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startTime)
  5971. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time (in milliseconds since January 1, 1970, 00:00:00) when this context was started'
  5972. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time (in milliseconds since January 1, 1970, 00:00:00) when this context was started)
  5973. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  5974. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  5975. 2019-12-01 20:56:33.437 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  5976. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  5977. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5978. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  5979. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  5980. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  5981. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5982. 2019-12-01 20:56:33.438 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  5983. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5984. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  5985. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1fc626ec)
  5986. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  5987. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  5988. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5989. 2019-12-01 20:56:33.439 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  5990. 2019-12-01 20:56:33.440 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  5991. )
  5992. 2019-12-01 20:56:33.440 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  5993. 2019-12-01 20:56:33.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  5994. 2019-12-01 20:56:33.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  5995. 2019-12-01 20:56:33.440 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  5996. 2019-12-01 20:56:33.441 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  5997. 2019-12-01 20:56:33.441 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  5998. 2019-12-01 20:56:33.441 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startupTime'
  5999. 2019-12-01 20:56:33.441 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startupTime)
  6000. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time (in milliseconds) it took to start this context'
  6001. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time (in milliseconds) it took to start this context)
  6002. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  6003. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  6004. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6005. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6006. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6007. 2019-12-01 20:56:33.442 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6008. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6009. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6010. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6011. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6012. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27add985)
  6013. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6014. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6015. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6016. 2019-12-01 20:56:33.443 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6017. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6018. )
  6019. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6020. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6021. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6022. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6023. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6024. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6025. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName'
  6026. 2019-12-01 20:56:33.444 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName)
  6027. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in'
  6028. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in)
  6029. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  6030. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  6031. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  6032. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  6033. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6034. 2019-12-01 20:56:33.445 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6035. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6036. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6037. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6038. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6039. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6040. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6041. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6477b65b)
  6042. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6043. 2019-12-01 20:56:33.446 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6044. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6045. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6046. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6047. )
  6048. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6049. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6050. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6051. 2019-12-01 20:56:33.447 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6052. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6053. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6054. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'swallowOutput'
  6055. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=swallowOutput)
  6056. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to set to cause the system.out and system.err to be redirected to the logger when executing a servlet'
  6057. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to set to cause the system.out and system.err to be redirected to the logger when executing a servlet)
  6058. 2019-12-01 20:56:33.448 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6059. 2019-12-01 20:56:33.448 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  6060. 2019-12-01 20:56:33.448 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  6061. 2019-12-01 20:56:33.449 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' to allow for resolving potential circular references
  6062. 2019-12-01 20:56:33.452 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6063. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6064. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6065. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6066. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6067. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6068. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6069. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6070. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6071. 2019-12-01 20:56:33.453 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d42e597)
  6072. 2019-12-01 20:56:33.454 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  6073. 2019-12-01 20:56:33.454 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
  6074. 2019-12-01 20:56:33.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6075. 2019-12-01 20:56:33.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6076. 2019-12-01 20:56:33.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6077. 2019-12-01 20:56:33.454 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6078. 2019-12-01 20:56:33.454 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6079. )
  6080. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6081. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6082. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6083. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6084. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6085. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6086. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tldScanTime'
  6087. 2019-12-01 20:56:33.455 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tldScanTime)
  6088. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time spend scanning jars for TLDs for this context'
  6089. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time spend scanning jars for TLDs for this context)
  6090. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  6091. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  6092. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6093. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6094. 2019-12-01 20:56:33.456 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6095. 2019-12-01 20:56:33.456 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'propertySourcesPlaceholderConfigurer'
  6096. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6097. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6098. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6099. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6100. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6101. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@231d4395)
  6102. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6103. 2019-12-01 20:56:33.457 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6104. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6105. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6106. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6107. )
  6108. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6109. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6110. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6111. 2019-12-01 20:56:33.457 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  6112. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6113. 2019-12-01 20:56:33.458 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6114. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6115. 2019-12-01 20:56:33.459 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  6116. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tldValidation'
  6117. 2019-12-01 20:56:33.459 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'methodValidationPostProcessor'
  6118. 2019-12-01 20:56:33.459 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'methodValidationPostProcessor'
  6119. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tldValidation)
  6120. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of *.tld files be performed by a validating parser?'
  6121. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of *.tld files be performed by a validating parser?)
  6122. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6123. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6124. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6125. 2019-12-01 20:56:33.459 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6126. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6127. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6128. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6129. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6130. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6131. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6132. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6a35d782)
  6133. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6134. 2019-12-01 20:56:33.460 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6135. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6136. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6137. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6138. )
  6139. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6140. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6141. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6142. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6143. 2019-12-01 20:56:33.461 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6144. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6145. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unloadDelay'
  6146. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unloadDelay)
  6147. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Amount of ms that the container will wait for servlets to unload'
  6148. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Amount of ms that the container will wait for servlets to unload)
  6149. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long'
  6150. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long)
  6151. 2019-12-01 20:56:33.462 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6152. 2019-12-01 20:56:33.463 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6153. 2019-12-01 20:56:33.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6154. 2019-12-01 20:56:33.463 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6155. 2019-12-01 20:56:33.465 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'environment'
  6156. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6157. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6158. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6159. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6160. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@332971f1)
  6161. 2019-12-01 20:56:33.474 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6162. 2019-12-01 20:56:33.475 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6163. 2019-12-01 20:56:33.475 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6164. 2019-12-01 20:56:33.475 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6165. 2019-12-01 20:56:33.477 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6166. )
  6167. 2019-12-01 20:56:33.479 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6168. 2019-12-01 20:56:33.484 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6169. 2019-12-01 20:56:33.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6170. 2019-12-01 20:56:33.485 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6171. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6172. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6173. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unpackWAR'
  6174. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unpackWAR)
  6175. 2019-12-01 20:56:33.486 DEBUG 1725 --- [main] o.s.aop.framework.JdkDynamicAopProxy : Creating JDK dynamic proxy: target source is org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver$1@6bc248ed
  6176. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unpack WAR property'
  6177. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unpack WAR property)
  6178. 2019-12-01 20:56:33.486 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6179. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6180. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6181. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6182. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6183. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6184. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6185. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6186. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6187. 2019-12-01 20:56:33.487 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6188. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@29dd545e)
  6189. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6190. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6191. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6192. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6193. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6194. )
  6195. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6196. 2019-12-01 20:56:33.488 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6197. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6198. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6199. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6200. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6201. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useHttpOnly'
  6202. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useHttpOnly)
  6203. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Indicates that session cookies should use HttpOnly'
  6204. 2019-12-01 20:56:33.489 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Indicates that session cookies should use HttpOnly)
  6205. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6206. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6207. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6208. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6209. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6210. 2019-12-01 20:56:33.490 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6211. 2019-12-01 20:56:33.491 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6212. 2019-12-01 20:56:33.491 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6213. 2019-12-01 20:56:33.491 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6214. 2019-12-01 20:56:33.491 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6215. 2019-12-01 20:56:33.491 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6015bb1b)
  6216. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6217. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6218. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6219. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6220. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6221. )
  6222. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6223. 2019-12-01 20:56:33.492 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6224. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6225. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6226. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6227. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6228. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useNaming'
  6229. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useNaming)
  6230. 2019-12-01 20:56:33.493 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Create a JNDI naming context for this application?'
  6231. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Create a JNDI naming context for this application?)
  6232. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true'
  6233. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true)
  6234. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6235. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6236. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6237. 2019-12-01 20:56:33.494 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6238. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6239. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6240. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6241. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6242. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6243. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6244. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2458e95c)
  6245. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6246. 2019-12-01 20:56:33.495 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6247. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6248. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6249. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6250. )
  6251. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6252. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6253. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6254. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6255. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6256. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6257. 2019-12-01 20:56:33.496 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useRelativeRedirects'
  6258. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useRelativeRedirects)
  6259. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'When generating location headers for 302 responses, should a relative URI be used?'
  6260. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=When generating location headers for 302 responses, should a relative URI be used?)
  6261. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6262. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6263. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6264. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6265. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6266. 2019-12-01 20:56:33.497 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6267. 2019-12-01 20:56:33.503 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6268. 2019-12-01 20:56:33.503 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6269. 2019-12-01 20:56:33.503 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6270. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6271. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c06b2df)
  6272. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6273. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6274. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6275. 2019-12-01 20:56:33.504 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6276. 2019-12-01 20:56:33.505 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6277. )
  6278. 2019-12-01 20:56:33.505 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6279. 2019-12-01 20:56:33.505 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6280. 2019-12-01 20:56:33.505 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6281. 2019-12-01 20:56:33.505 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6282. 2019-12-01 20:56:33.493 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
  6283. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6284. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6285. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'webappVersion'
  6286. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=webappVersion)
  6287. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The version of this web application - used in parallel deployment to differentiate different versions of the same web application'
  6288. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The version of this web application - used in parallel deployment to differentiate different versions of the same web application)
  6289. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  6290. 2019-12-01 20:56:33.506 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  6291. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  6292. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  6293. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6294. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6295. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6296. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6297. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6298. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6299. 2019-12-01 20:56:33.507 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.aop.proxy-target-class' in any property source
  6300. 2019-12-01 20:56:33.507 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6301. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6302. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1fba72a5)
  6303. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6304. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6305. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6306. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6307. 2019-12-01 20:56:33.508 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6308. )
  6309. 2019-12-01 20:56:33.509 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6310. 2019-12-01 20:56:33.509 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6311. 2019-12-01 20:56:33.509 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6312. 2019-12-01 20:56:33.509 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6313. 2019-12-01 20:56:33.509 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6314. 2019-12-01 20:56:33.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6315. 2019-12-01 20:56:33.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'welcomeFiles'
  6316. 2019-12-01 20:56:33.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=welcomeFiles)
  6317. 2019-12-01 20:56:33.520 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'methodValidationPostProcessor' to allow for resolving potential circular references
  6318. 2019-12-01 20:56:33.520 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The welcome files for this context'
  6319. 2019-12-01 20:56:33.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The welcome files for this context)
  6320. 2019-12-01 20:56:33.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;'
  6321. 2019-12-01 20:56:33.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;)
  6322. 2019-12-01 20:56:33.527 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false'
  6323. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false)
  6324. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6325. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6326. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6327. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6328. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6329. 2019-12-01 20:56:33.528 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6330. 2019-12-01 20:56:33.542 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'methodValidationPostProcessor'
  6331. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6332. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6333. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@523adf2a)
  6334. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6335. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6336. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6337. 2019-12-01 20:56:33.544 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6338. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6339. )
  6340. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6341. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6342. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6343. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6344. 2019-12-01 20:56:33.545 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6345. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6346. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'workDir'
  6347. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=workDir)
  6348. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The pathname to the work directory for this context'
  6349. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The pathname to the work directory for this context)
  6350. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String'
  6351. 2019-12-01 20:56:33.546 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String)
  6352. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6353. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6354. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6355. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6356. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6357. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6358. 2019-12-01 20:56:33.547 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6359. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6360. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@31cbce38)
  6361. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6362. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6363. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6364. 2019-12-01 20:56:33.548 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6365. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6366. )
  6367. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6368. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6369. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6370. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6371. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6372. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6373. 2019-12-01 20:56:33.549 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xmlValidation'
  6374. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xmlValidation)
  6375. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of web.xml and web-fragment.xml files be performed by a validating parser?'
  6376. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of web.xml and web-fragment.xml files be performed by a validating parser?)
  6377. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6378. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6379. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6380. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6381. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6382. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6383. 2019-12-01 20:56:33.550 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6384. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6385. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6386. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6387. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@58b20294)
  6388. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6389. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6390. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6391. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6392. 2019-12-01 20:56:33.551 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6393. )
  6394. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute)
  6395. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute'
  6396. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6397. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo
  6398. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6399. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties
  6400. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xmlNamespaceAware'
  6401. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xmlNamespaceAware)
  6402. 2019-12-01 20:56:33.552 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of web.xml and web-fragment.xml files be performed by a namespace aware parser?'
  6403. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of web.xml and web-fragment.xml files be performed by a namespace aware parser?)
  6404. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean'
  6405. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean)
  6406. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6407. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute)
  6408. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute'
  6409. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6410. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6411. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6412. 2019-12-01 20:56:33.553 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6413. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo]
  6414. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@14517c7d)
  6415. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo
  6416. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6417. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null]
  6418. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo
  6419. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6420. )
  6421. 2019-12-01 20:56:33.554 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6422. 2019-12-01 20:56:33.554 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'methodValidationPostProcessor'
  6423. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6424. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6425. 2019-12-01 20:56:33.555 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
  6426. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6427. 2019-12-01 20:56:33.555 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'webServerFactoryCustomizerBeanPostProcessor'
  6428. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6429. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6430. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addApplicationListener'
  6431. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addApplicationListener)
  6432. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new Listener class name to the set of Listeners configured for this application.'
  6433. 2019-12-01 20:56:33.555 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new Listener class name to the set of Listeners configured for this application.)
  6434. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6435. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6436. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6437. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6438. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6439. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6440. )
  6441. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6442. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6443. 2019-12-01 20:56:33.556 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'webServerFactoryCustomizerBeanPostProcessor' to allow for resolving potential circular references
  6444. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6445. 2019-12-01 20:56:33.556 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6446. 2019-12-01 20:56:33.557 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6447. 2019-12-01 20:56:33.557 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6448. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener'
  6449. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener)
  6450. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a listener class'
  6451. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a listener class)
  6452. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6453. 2019-12-01 20:56:33.558 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6454. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6455. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6456. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6457. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6458. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6459. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6460. 2019-12-01 20:56:33.561 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'webServerFactoryCustomizerBeanPostProcessor'
  6461. 2019-12-01 20:56:33.561 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
  6462. 2019-12-01 20:56:33.561 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'errorPageRegistrarBeanPostProcessor'
  6463. 2019-12-01 20:56:33.562 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'errorPageRegistrarBeanPostProcessor' to allow for resolving potential circular references
  6464. 2019-12-01 20:56:33.565 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'errorPageRegistrarBeanPostProcessor'
  6465. 2019-12-01 20:56:33.565 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer$PropertyMappingCheckBeanPostProcessor'
  6466. 2019-12-01 20:56:33.559 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6467. 2019-12-01 20:56:33.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6468. 2019-12-01 20:56:33.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@10162252)
  6469. 2019-12-01 20:56:33.565 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6470. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6471. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6472. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6473. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6474. )
  6475. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6476. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6477. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6478. '
  6479. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6480. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6481. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6482. 2019-12-01 20:56:33.566 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6483. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7f439466)
  6484. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6485. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6486. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6487. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6488. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6489. )
  6490. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6491. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6492. 2019-12-01 20:56:33.567 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6493. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6494. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6495. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6496. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addApplicationParameter'
  6497. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addApplicationParameter)
  6498. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new application parameter for this application.'
  6499. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new application parameter for this application.)
  6500. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6501. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6502. 2019-12-01 20:56:33.568 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6503. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6504. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6505. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6506. )
  6507. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6508. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6509. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6510. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6511. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6512. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6513. 2019-12-01 20:56:33.569 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener'
  6514. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener)
  6515. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a listener class'
  6516. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a listener class)
  6517. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6518. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6519. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6520. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6521. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6522. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6523. 2019-12-01 20:56:33.570 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6524. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6525. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6526. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6527. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@372d8fb8)
  6528. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6529. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6530. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6531. 2019-12-01 20:56:33.571 DEBUG 1725 --- [main] o.s.w.c.s.GenericWebApplicationContext : Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@bc57b40]
  6532. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6533. 2019-12-01 20:56:33.571 DEBUG 1725 --- [main] o.s.w.c.s.GenericWebApplicationContext : Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@1b5bc39d]
  6534. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6535. )
  6536. 2019-12-01 20:56:33.571 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6537. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6538. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6539. '
  6540. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6541. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6542. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6543. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6544. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2880afb4)
  6545. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6546. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6547. 2019-12-01 20:56:33.572 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6548. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6549. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6550. )
  6551. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6552. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6553. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6554. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6555. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6556. 2019-12-01 20:56:33.573 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6557. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addChild'
  6558. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addChild)
  6559. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a child to this Context'
  6560. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a child to this Context)
  6561. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6562. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6563. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6564. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6565. 2019-12-01 20:56:33.574 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6566. 2019-12-01 20:56:33.575 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6567. )
  6568. 2019-12-01 20:56:33.575 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6569. 2019-12-01 20:56:33.575 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6570. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6571. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6572. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6573. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6574. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type'
  6575. 2019-12-01 20:56:33.576 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type)
  6576. 2019-12-01 20:56:33.577 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new child to be added'
  6577. 2019-12-01 20:56:33.577 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new child to be added)
  6578. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6579. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6580. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6581. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6582. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6583. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6584. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6585. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6586. 2019-12-01 20:56:33.578 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6587. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6588. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@9251c44)
  6589. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6590. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6591. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6592. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6593. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6594. )
  6595. 2019-12-01 20:56:33.579 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6596. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6597. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6598. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6599. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6600. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6601. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  6602. 2019-12-01 20:56:33.580 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  6603. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the child to be added'
  6604. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the child to be added)
  6605. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6606. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6607. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6608. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6609. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6610. 2019-12-01 20:56:33.581 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6611. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6612. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6613. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6614. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6615. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6a2649a2)
  6616. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6617. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6618. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6619. 2019-12-01 20:56:33.582 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6620. 2019-12-01 20:56:33.583 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6621. )
  6622. 2019-12-01 20:56:33.583 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6623. 2019-12-01 20:56:33.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6624. 2019-12-01 20:56:33.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6625. '
  6626. 2019-12-01 20:56:33.583 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6627. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6628. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6629. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6630. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@312d5b11)
  6631. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6632. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6633. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6634. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6635. 2019-12-01 20:56:33.584 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6636. )
  6637. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6638. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6639. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6640. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6641. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6642. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6643. 2019-12-01 20:56:33.585 DEBUG 1725 --- [main] o.s.u.c.s.UiApplicationContextUtils : Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@226f885f]
  6644. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLifecycleListener'
  6645. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLifecycleListener)
  6646. 2019-12-01 20:56:33.585 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a lifecycle listener to this Context'
  6647. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a lifecycle listener to this Context)
  6648. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6649. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6650. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6651. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6652. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6653. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6654. )
  6655. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6656. 2019-12-01 20:56:33.586 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6657. 2019-12-01 20:56:33.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6658. 2019-12-01 20:56:33.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6659. 2019-12-01 20:56:33.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6660. 2019-12-01 20:56:33.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6661. 2019-12-01 20:56:33.587 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type'
  6662. 2019-12-01 20:56:33.588 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type)
  6663. 2019-12-01 20:56:33.588 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new lifecycle listener to be added'
  6664. 2019-12-01 20:56:33.588 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new lifecycle listener to be added)
  6665. 2019-12-01 20:56:33.592 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6666. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6667. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6668. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6669. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6670. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6671. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6672. 2019-12-01 20:56:33.593 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24: defining beans [org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor,org.springframework.boot.test.mock.mockito.MockitoPostProcessor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,pushApplication,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,pushController,androidPushServiceImpl,HMSConfig,HMSPush,meiZuConfig,meiZuPush,xiaomiConfig,xiaomiPush,apnsConfig,apnsServer,IOSPushServiceImpl,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,org.springframework.boot.autoconfigure.condition.BeanTypeRegistry,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration,websocketServletWebServerCustomizer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat,tomcatServletWebServerFactory,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,servletWebServerFactoryCustomizer,tomcatServletWebServerFactoryCustomizer,server-org.springframework.boot.autoconfigure.web.ServerProperties,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata,webServerFactoryCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,defaultValidator,methodValidationPostProcessor,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration,faviconHandlerMapping,faviconRequestHandler,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration,requestMappingHandlerAdapter,requestMappingHandlerMapping,mvcConversionService,mvcValidator,mvcContentNegotiationManager,mvcPathMatcher,mvcUrlPathHelper,viewControllerHandlerMapping,beanNameHandlerMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,mvcHandlerMappingIntrospector,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter,defaultViewResolver,viewResolver,welcomePageHandlerMapping,requestContextFilter,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration,hiddenHttpMethodFilter,httpPutFormContentFilter,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration,gsonBuilder,gson,standardGsonBuilderCustomizer,spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration,parameterNamesModule,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration,jacksonCodecCustomizer,org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,restTemplateBuilder,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration,tomcatWebServerFactoryCustomizer,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties]; root of factory hierarchy
  6673. 2019-12-01 20:56:33.593 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6674. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
  6675. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
  6676. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6677. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
  6678. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  6679. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  6680. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6681. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  6682. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1cfdaf8f)
  6683. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
  6684. 2019-12-01 20:56:33.594 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.event.internalEventListenerProcessor'
  6685. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6686. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6687. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6688. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6689. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6690. )
  6691. 2019-12-01 20:56:33.594 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6692. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6693. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6694. '
  6695. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6696. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6697. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6698. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6699. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3d9b5768)
  6700. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6701. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6702. 2019-12-01 20:56:33.595 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.event.internalEventListenerProcessor' to allow for resolving potential circular references
  6703. 2019-12-01 20:56:33.595 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6704. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6705. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6706. )
  6707. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6708. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6709. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6710. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6711. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6712. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6713. 2019-12-01 20:56:33.596 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLocaleEncodingMappingParameter'
  6714. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLocaleEncodingMappingParameter)
  6715. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a Locale Encoding Mapping'
  6716. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a Locale Encoding Mapping)
  6717. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6718. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6719. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6720. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6721. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6722. 2019-12-01 20:56:33.597 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6723. )
  6724. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6725. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6726. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6727. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6728. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6729. 2019-12-01 20:56:33.598 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6730. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'locale'
  6731. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=locale)
  6732. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Locale to map an encoding for'
  6733. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Locale to map an encoding for)
  6734. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6735. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6736. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6737. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6738. 2019-12-01 20:56:33.599 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6739. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6740. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6741. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6742. 2019-12-01 20:56:33.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.event.internalEventListenerProcessor'
  6743. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6744. 2019-12-01 20:56:33.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
  6745. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6746. 2019-12-01 20:56:33.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.context.event.internalEventListenerFactory'
  6747. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@65a87220)
  6748. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6749. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6750. 2019-12-01 20:56:33.600 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6751. 2019-12-01 20:56:33.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.context.event.internalEventListenerFactory' to allow for resolving potential circular references
  6752. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6753. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6754. )
  6755. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6756. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6757. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6758. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6759. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6760. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6761. 2019-12-01 20:56:33.601 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'encoding'
  6762. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=encoding)
  6763. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Encoding to be used for a give locale'
  6764. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Encoding to be used for a give locale)
  6765. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6766. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6767. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6768. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6769. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6770. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6771. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6772. 2019-12-01 20:56:33.602 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6773. 2019-12-01 20:56:33.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.context.event.internalEventListenerFactory'
  6774. 2019-12-01 20:56:33.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pushApplication'
  6775. 2019-12-01 20:56:33.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'pushApplication'
  6776. 2019-12-01 20:56:33.604 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'pushApplication' to allow for resolving potential circular references
  6777. 2019-12-01 20:56:33.609 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'pushApplication'
  6778. 2019-12-01 20:56:33.609 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  6779. 2019-12-01 20:56:33.610 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pushController'
  6780. 2019-12-01 20:56:33.610 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'pushController'
  6781. 2019-12-01 20:56:33.603 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6782. 2019-12-01 20:56:33.613 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6783. 2019-12-01 20:56:33.614 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3e064857)
  6784. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6785. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6786. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6787. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6788. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6789. )
  6790. 2019-12-01 20:56:33.615 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6791. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6792. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6793. '
  6794. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6795. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6796. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6797. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6798. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4f7609cf)
  6799. 2019-12-01 20:56:33.616 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6800. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6801. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6802. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6803. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6804. )
  6805. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6806. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6807. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6808. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6809. 2019-12-01 20:56:33.617 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6810. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6811. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addMimeMapping'
  6812. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addMimeMapping)
  6813. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new MIME mapping, replacing any existing mapping for the specified extension.'
  6814. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new MIME mapping, replacing any existing mapping for the specified extension.)
  6815. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6816. 2019-12-01 20:56:33.618 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6817. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6818. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6819. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6820. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6821. )
  6822. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6823. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6824. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6825. 2019-12-01 20:56:33.619 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6826. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6827. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6828. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'extension'
  6829. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=extension)
  6830. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Filename extension being mapped'
  6831. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Filename extension being mapped)
  6832. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6833. 2019-12-01 20:56:33.620 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6834. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6835. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6836. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6837. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6838. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6839. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6840. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6841. 2019-12-01 20:56:33.621 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6842. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2831375e)
  6843. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6844. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6845. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6846. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6847. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6848. )
  6849. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6850. 2019-12-01 20:56:33.622 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6851. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6852. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6853. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6854. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6855. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'mimeType'
  6856. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=mimeType)
  6857. 2019-12-01 20:56:33.623 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Corresponding MIME type'
  6858. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Corresponding MIME type)
  6859. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6860. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6861. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6862. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6863. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6864. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6865. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6866. 2019-12-01 20:56:33.624 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6867. 2019-12-01 20:56:33.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6868. 2019-12-01 20:56:33.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6869. 2019-12-01 20:56:33.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@eae790a)
  6870. 2019-12-01 20:56:33.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6871. 2019-12-01 20:56:33.625 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6872. 2019-12-01 20:56:33.627 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.PushController]: AutowiredFieldElement for private cn.wildfirechat.push.android.AndroidPushService cn.wildfirechat.push.PushController.mAndroidPushService
  6873. 2019-12-01 20:56:33.627 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.PushController]: AutowiredFieldElement for private cn.wildfirechat.push.ios.IOSPushService cn.wildfirechat.push.PushController.mIOSPushService
  6874. 2019-12-01 20:56:33.627 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'pushController' to allow for resolving potential circular references
  6875. 2019-12-01 20:56:33.629 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'pushController': AutowiredFieldElement for private cn.wildfirechat.push.android.AndroidPushService cn.wildfirechat.push.PushController.mAndroidPushService
  6876. 2019-12-01 20:56:33.631 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'androidPushServiceImpl'
  6877. 2019-12-01 20:56:33.631 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'androidPushServiceImpl'
  6878. 2019-12-01 20:56:33.632 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.AndroidPushServiceImpl]: AutowiredFieldElement for private cn.wildfirechat.push.android.hms.HMSPush cn.wildfirechat.push.android.AndroidPushServiceImpl.hmsPush
  6879. 2019-12-01 20:56:33.632 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.AndroidPushServiceImpl]: AutowiredFieldElement for private cn.wildfirechat.push.android.meizu.MeiZuPush cn.wildfirechat.push.android.AndroidPushServiceImpl.meiZuPush
  6880. 2019-12-01 20:56:33.632 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.AndroidPushServiceImpl]: AutowiredFieldElement for private cn.wildfirechat.push.android.xiaomi.XiaomiPush cn.wildfirechat.push.android.AndroidPushServiceImpl.xiaomiPush
  6881. 2019-12-01 20:56:33.632 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'androidPushServiceImpl' to allow for resolving potential circular references
  6882. 2019-12-01 20:56:33.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6883. 2019-12-01 20:56:33.635 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6884. 2019-12-01 20:56:33.635 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6885. )
  6886. 2019-12-01 20:56:33.635 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6887. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6888. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6889. '
  6890. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6891. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6892. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6893. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6894. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@266dc78)
  6895. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6896. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6897. 2019-12-01 20:56:33.636 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6898. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6899. 2019-12-01 20:56:33.635 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'androidPushServiceImpl': AutowiredFieldElement for private cn.wildfirechat.push.android.hms.HMSPush cn.wildfirechat.push.android.AndroidPushServiceImpl.hmsPush
  6900. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6901. )
  6902. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6903. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6904. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6905. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  6906. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6907. 2019-12-01 20:56:33.637 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  6908. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addParameter'
  6909. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addParameter)
  6910. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new context initialization parameter, replacing any existing value for the specified name.'
  6911. 2019-12-01 20:56:33.638 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'HMSPush'
  6912. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new context initialization parameter, replacing any existing value for the specified name.)
  6913. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  6914. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  6915. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  6916. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  6917. 2019-12-01 20:56:33.638 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6918. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6919. )
  6920. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6921. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6922. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6923. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6924. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6925. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6926. 2019-12-01 20:56:33.639 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  6927. 2019-12-01 20:56:33.640 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  6928. 2019-12-01 20:56:33.640 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the new parameter'
  6929. 2019-12-01 20:56:33.640 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the new parameter)
  6930. 2019-12-01 20:56:33.640 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6931. 2019-12-01 20:56:33.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6932. 2019-12-01 20:56:33.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6933. 2019-12-01 20:56:33.641 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'HMSPush'
  6934. 2019-12-01 20:56:33.641 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6935. 2019-12-01 20:56:33.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6936. 2019-12-01 20:56:33.641 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6937. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6938. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6939. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6940. 2019-12-01 20:56:33.642 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.hms.HMSPush]: AutowiredFieldElement for private cn.wildfirechat.push.android.hms.HMSConfig cn.wildfirechat.push.android.hms.HMSPush.mConfig
  6941. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6942. 2019-12-01 20:56:33.642 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'HMSPush' to allow for resolving potential circular references
  6943. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7da1958a)
  6944. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6945. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6946. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6947. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6948. 2019-12-01 20:56:33.642 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6949. )
  6950. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  6951. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  6952. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6953. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  6954. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  6955. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  6956. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'value'
  6957. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=value)
  6958. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Value of the new parameter'
  6959. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Value of the new parameter)
  6960. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  6961. 2019-12-01 20:56:33.643 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'HMSPush': AutowiredFieldElement for private cn.wildfirechat.push.android.hms.HMSConfig cn.wildfirechat.push.android.hms.HMSPush.mConfig
  6962. 2019-12-01 20:56:33.643 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  6963. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6964. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  6965. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  6966. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  6967. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6968. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6969. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6970. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  6971. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5c8bc6a7)
  6972. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  6973. 2019-12-01 20:56:33.644 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6974. 2019-12-01 20:56:33.644 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'HMSConfig'
  6975. 2019-12-01 20:56:33.645 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'HMSConfig'
  6976. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  6977. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  6978. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6979. )
  6980. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  6981. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  6982. 2019-12-01 20:56:33.645 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  6983. '
  6984. 2019-12-01 20:56:33.646 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6985. 2019-12-01 20:56:33.646 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  6986. 2019-12-01 20:56:33.646 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6987. 2019-12-01 20:56:33.645 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'HMSConfig' to allow for resolving potential circular references
  6988. 2019-12-01 20:56:33.654 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.context.properties.ConversionServiceDeducer$Factory'
  6989. 2019-12-01 20:56:33.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  6990. 2019-12-01 20:56:33.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@21108215)
  6991. 2019-12-01 20:56:33.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  6992. 2019-12-01 20:56:33.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  6993. 2019-12-01 20:56:33.656 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  6994. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  6995. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  6996. )
  6997. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  6998. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  6999. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7000. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7001. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7002. 2019-12-01 20:56:33.657 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7003. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRoleMapping'
  7004. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRoleMapping)
  7005. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a security role reference for this web application.'
  7006. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a security role reference for this web application.)
  7007. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7008. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7009. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7010. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7011. 2019-12-01 20:56:33.658 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7012. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7013. )
  7014. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7015. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7016. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7017. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7018. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7019. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7020. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role'
  7021. 2019-12-01 20:56:33.659 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role)
  7022. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role used in the application'
  7023. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role used in the application)
  7024. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7025. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7026. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7027. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7028. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7029. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7030. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7031. 2019-12-01 20:56:33.660 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7032. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7033. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7034. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@15a10f53)
  7035. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7036. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7037. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7038. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7039. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7040. )
  7041. 2019-12-01 20:56:33.661 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7042. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7043. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7044. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7045. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7046. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7047. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'link'
  7048. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=link)
  7049. 2019-12-01 20:56:33.662 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Actual security role to check for'
  7050. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Actual security role to check for)
  7051. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7052. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7053. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7054. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7055. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7056. 2019-12-01 20:56:33.663 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7057. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7058. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7059. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7060. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7061. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@645dd5a8)
  7062. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7063. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7064. 2019-12-01 20:56:33.664 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7065. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7066. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7067. )
  7068. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7069. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7070. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7071. '
  7072. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7073. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7074. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7075. 2019-12-01 20:56:33.665 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7076. 2019-12-01 20:56:33.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@66e1997a)
  7077. 2019-12-01 20:56:33.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7078. 2019-12-01 20:56:33.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7079. 2019-12-01 20:56:33.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7080. 2019-12-01 20:56:33.666 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7081. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7082. )
  7083. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7084. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7085. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7086. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7087. 2019-12-01 20:56:33.667 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7088. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7089. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addSecurityRole'
  7090. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addSecurityRole)
  7091. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new security role for this web application.'
  7092. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new security role for this web application.)
  7093. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7094. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7095. 2019-12-01 20:56:33.668 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7096. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7097. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7098. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7099. )
  7100. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7101. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7102. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7103. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7104. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7105. 2019-12-01 20:56:33.669 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7106. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role'
  7107. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role)
  7108. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New security role'
  7109. 2019-12-01 20:56:33.670 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [org.springframework.boot.context.properties.ConversionServiceDeducer$Factory]: AutowiredMethodElement for public void org.springframework.boot.context.properties.ConversionServiceDeducer$Factory.setConverters(java.util.List)
  7110. 2019-12-01 20:56:33.670 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [org.springframework.boot.context.properties.ConversionServiceDeducer$Factory]: AutowiredMethodElement for public void org.springframework.boot.context.properties.ConversionServiceDeducer$Factory.setGenericConverters(java.util.List)
  7111. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New security role)
  7112. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7113. 2019-12-01 20:56:33.670 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'org.springframework.boot.context.properties.ConversionServiceDeducer$Factory': AutowiredMethodElement for public void org.springframework.boot.context.properties.ConversionServiceDeducer$Factory.setConverters(java.util.List)
  7114. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7115. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7116. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7117. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7118. 2019-12-01 20:56:33.670 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7119. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7120. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7121. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7122. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7123. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@43c4bf99)
  7124. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7125. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7126. 2019-12-01 20:56:33.671 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7127. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7128. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7129. )
  7130. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7131. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7132. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7133. '
  7134. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7135. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7136. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7137. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7138. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5e82fb25)
  7139. 2019-12-01 20:56:33.672 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7140. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7141. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7142. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7143. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7144. )
  7145. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7146. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7147. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7148. 2019-12-01 20:56:33.673 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7149. 2019-12-01 20:56:33.674 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7150. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7151. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addServletMapping'
  7152. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addServletMapping)
  7153. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new servlet mapping, replacing any existing mapping for the specified pattern.'
  7154. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new servlet mapping, replacing any existing mapping for the specified pattern.)
  7155. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7156. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7157. 2019-12-01 20:56:33.675 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'org.springframework.boot.context.properties.ConversionServiceDeducer$Factory': AutowiredMethodElement for public void org.springframework.boot.context.properties.ConversionServiceDeducer$Factory.setGenericConverters(java.util.List)
  7158. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7159. 2019-12-01 20:56:33.675 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7160. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7161. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7162. )
  7163. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7164. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7165. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7166. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7167. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7168. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7169. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern'
  7170. 2019-12-01 20:56:33.676 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern)
  7171. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'URL pattern to be mapped'
  7172. 2019-12-01 20:56:33.677 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.context.properties.ConversionServiceDeducer$Factory'
  7173. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=URL pattern to be mapped)
  7174. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7175. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7176. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7177. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7178. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7179. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7180. 2019-12-01 20:56:33.677 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7181. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7182. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7183. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7184. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@54f885c8)
  7185. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7186. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7187. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7188. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7189. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7190. )
  7191. 2019-12-01 20:56:33.678 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7192. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7193. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7194. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7195. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7196. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7197. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  7198. 2019-12-01 20:56:33.679 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  7199. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the corresponding servlet to execute'
  7200. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the corresponding servlet to execute)
  7201. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7202. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7203. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7204. 2019-12-01 20:56:33.680 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7205. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7206. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7207. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7208. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7209. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7210. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7211. 2019-12-01 20:56:33.681 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3eb8ec64)
  7212. 2019-12-01 20:56:33.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7213. 2019-12-01 20:56:33.682 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7214. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7215. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7216. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7217. )
  7218. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7219. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7220. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7221. '
  7222. 2019-12-01 20:56:33.683 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7223. 2019-12-01 20:56:33.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7224. 2019-12-01 20:56:33.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7225. 2019-12-01 20:56:33.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7226. 2019-12-01 20:56:33.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@58e6a45d)
  7227. 2019-12-01 20:56:33.684 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7228. 2019-12-01 20:56:33.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7229. 2019-12-01 20:56:33.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7230. 2019-12-01 20:56:33.687 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7231. 2019-12-01 20:56:33.687 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7232. )
  7233. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7234. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7235. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7236. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7237. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7238. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7239. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addServletMapping'
  7240. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addServletMapping)
  7241. 2019-12-01 20:56:33.688 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new servlet mapping, replacing any existing mapping for the specified pattern.'
  7242. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new servlet mapping, replacing any existing mapping for the specified pattern.)
  7243. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7244. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7245. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7246. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7247. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7248. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7249. )
  7250. 2019-12-01 20:56:33.689 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7251. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7252. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7253. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7254. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7255. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7256. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern'
  7257. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern)
  7258. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'URL pattern to be mapped'
  7259. 2019-12-01 20:56:33.690 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=URL pattern to be mapped)
  7260. 2019-12-01 20:56:33.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7261. 2019-12-01 20:56:33.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7262. 2019-12-01 20:56:33.691 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7263. 2019-12-01 20:56:33.691 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7264. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7265. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7266. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7267. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7268. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7269. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7270. 2019-12-01 20:56:33.700 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@117427b7)
  7271. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7272. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7273. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7274. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7275. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7276. )
  7277. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7278. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7279. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7280. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7281. 2019-12-01 20:56:33.701 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7282. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7283. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  7284. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  7285. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the corresponding servlet to execute'
  7286. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the corresponding servlet to execute)
  7287. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7288. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7289. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7290. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7291. 2019-12-01 20:56:33.702 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7292. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7293. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7294. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7295. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7296. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7297. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1322694)
  7298. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7299. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7300. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7301. 2019-12-01 20:56:33.703 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7302. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7303. )
  7304. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7305. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7306. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7307. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7308. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7309. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7310. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'jspWildcard'
  7311. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=jspWildcard)
  7312. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to ''true' if name identifies the JspServlet and pattern contains a wildcard; 'false' otherwise'
  7313. 2019-12-01 20:56:33.704 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description='true' if name identifies the JspServlet and pattern contains a wildcard; 'false' otherwise)
  7314. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean'
  7315. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean)
  7316. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7317. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7318. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7319. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7320. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7321. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7322. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7323. 2019-12-01 20:56:33.705 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7324. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7810311a)
  7325. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7326. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7327. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7328. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7329. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7330. )
  7331. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7332. 2019-12-01 20:56:33.706 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7333. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7334. '
  7335. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7336. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7337. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7338. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7339. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@15b9a609)
  7340. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7341. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7342. 2019-12-01 20:56:33.707 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7343. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7344. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7345. )
  7346. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7347. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7348. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7349. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7350. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7351. 2019-12-01 20:56:33.708 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7352. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addValve'
  7353. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addValve)
  7354. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Context'
  7355. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Context)
  7356. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7357. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7358. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  7359. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  7360. 2019-12-01 20:56:33.709 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7361. 2019-12-01 20:56:33.710 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7362. )
  7363. 2019-12-01 20:56:33.713 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7364. 2019-12-01 20:56:33.713 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7365. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7366. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7367. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7368. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7369. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveType'
  7370. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveType)
  7371. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new valve to be added'
  7372. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new valve to be added)
  7373. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7374. 2019-12-01 20:56:33.714 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7375. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7376. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7377. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7378. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7379. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7380. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7381. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7382. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7383. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@25c06296)
  7384. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7385. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7386. 2019-12-01 20:56:33.715 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7387. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7388. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7389. )
  7390. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7391. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7392. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7393. '
  7394. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7395. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7396. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7397. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7398. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3556f63c)
  7399. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7400. 2019-12-01 20:56:33.716 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7401. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7402. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7403. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7404. )
  7405. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7406. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7407. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7408. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7409. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7410. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7411. 2019-12-01 20:56:33.717 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWatchedResource'
  7412. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWatchedResource)
  7413. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to ' Add a resource which will be watched for reloading by the host auto deployer.'
  7414. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description= Add a resource which will be watched for reloading by the host auto deployer.)
  7415. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7416. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7417. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7418. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7419. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7420. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7421. )
  7422. 2019-12-01 20:56:33.718 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7423. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7424. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7425. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7426. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7427. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7428. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  7429. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  7430. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Path to the resource, either absolute or relative to docBase'
  7431. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Path to the resource, either absolute or relative to docBase)
  7432. 2019-12-01 20:56:33.719 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7433. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7434. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7435. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7436. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7437. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7438. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7439. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7440. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7441. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7442. 2019-12-01 20:56:33.720 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4cb7896d)
  7443. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7444. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7445. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7446. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7447. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7448. )
  7449. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7450. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7451. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7452. '
  7453. 2019-12-01 20:56:33.721 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7454. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7455. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7456. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7457. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1466e71c)
  7458. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7459. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7460. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7461. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7462. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7463. )
  7464. 2019-12-01 20:56:33.722 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7465. 2019-12-01 20:56:33.723 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7466. 2019-12-01 20:56:33.723 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7467. 2019-12-01 20:56:33.723 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7468. 2019-12-01 20:56:33.723 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7469. 2019-12-01 20:56:33.727 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7470. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWelcomeFile'
  7471. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWelcomeFile)
  7472. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new welcome file to the set recognized by this Context.'
  7473. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new welcome file to the set recognized by this Context.)
  7474. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7475. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7476. 2019-12-01 20:56:33.728 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7477. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7478. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7479. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7480. )
  7481. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7482. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7483. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7484. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7485. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7486. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7487. 2019-12-01 20:56:33.729 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name'
  7488. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name)
  7489. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New welcome file name'
  7490. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New welcome file name)
  7491. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7492. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7493. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7494. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7495. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7496. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7497. 2019-12-01 20:56:33.730 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7498. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7499. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7500. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7501. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3214e3d4)
  7502. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7503. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7504. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7505. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7506. 2019-12-01 20:56:33.731 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7507. )
  7508. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7509. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7510. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7511. '
  7512. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7513. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7514. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7515. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7516. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@307104bc)
  7517. 2019-12-01 20:56:33.732 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7518. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7519. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7520. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7521. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7522. )
  7523. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7524. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7525. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7526. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7527. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7528. 2019-12-01 20:56:33.733 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7529. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWrapperLifecycle'
  7530. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWrapperLifecycle)
  7531. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.'
  7532. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.)
  7533. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7534. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7535. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7536. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7537. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7538. 2019-12-01 20:56:33.734 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7539. )
  7540. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7541. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7542. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7543. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7544. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7545. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7546. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener'
  7547. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener)
  7548. 2019-12-01 20:56:33.735 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a LifecycleListener class'
  7549. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a LifecycleListener class)
  7550. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7551. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7552. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7553. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7554. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7555. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7556. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7557. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7558. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7559. 2019-12-01 20:56:33.736 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7560. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@407d1f3e)
  7561. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7562. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7563. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7564. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7565. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7566. )
  7567. 2019-12-01 20:56:33.737 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7568. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7569. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7570. '
  7571. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7572. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7573. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7574. 2019-12-01 20:56:33.738 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7575. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@63005e2a)
  7576. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7577. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7578. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7579. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7580. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7581. )
  7582. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7583. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7584. 2019-12-01 20:56:33.739 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7585. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7586. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7587. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7588. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWrapperListener'
  7589. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWrapperListener)
  7590. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.'
  7591. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.)
  7592. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7593. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7594. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7595. 2019-12-01 20:56:33.740 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7596. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7597. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7598. )
  7599. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7600. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7601. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7602. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7603. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7604. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7605. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener'
  7606. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener)
  7607. 2019-12-01 20:56:33.741 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a ContainerListener class'
  7608. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a ContainerListener class)
  7609. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String'
  7610. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String)
  7611. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7612. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7613. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7614. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7615. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7616. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7617. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7618. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7619. 2019-12-01 20:56:33.742 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@761f0bdd)
  7620. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7621. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7622. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7623. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7624. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7625. )
  7626. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7627. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7628. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7629. '
  7630. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7631. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7632. 2019-12-01 20:56:33.743 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7633. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7634. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4ef3a546)
  7635. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7636. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7637. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7638. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7639. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7640. )
  7641. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7642. 2019-12-01 20:56:33.744 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7643. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7644. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7645. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7646. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7647. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy'
  7648. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy)
  7649. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy the context'
  7650. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy the context)
  7651. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7652. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7653. 2019-12-01 20:56:33.745 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void'
  7654. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void)
  7655. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7656. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7657. )
  7658. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7659. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7660. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7661. '
  7662. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7663. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7664. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7665. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7666. 2019-12-01 20:56:33.746 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@665fc749)
  7667. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7668. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7669. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7670. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7671. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7672. )
  7673. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7674. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7675. 2019-12-01 20:56:33.747 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7676. 2019-12-01 20:56:33.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7677. 2019-12-01 20:56:33.748 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7678. 2019-12-01 20:56:33.750 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7679. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findApplicationListeners'
  7680. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findApplicationListeners)
  7681. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of application listener class names configured for this application.'
  7682. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of application listener class names configured for this application.)
  7683. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO'
  7684. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO)
  7685. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;'
  7686. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;)
  7687. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7688. 2019-12-01 20:56:33.751 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7689. )
  7690. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7691. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7692. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7693. '
  7694. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7695. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7696. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7697. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7698. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@74f34a6)
  7699. 2019-12-01 20:56:33.752 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7700. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7701. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7702. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7703. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7704. )
  7705. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7706. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7707. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7708. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7709. 2019-12-01 20:56:33.753 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7710. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7711. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findApplicationParameters'
  7712. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findApplicationParameters)
  7713. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of application parameters for this application.'
  7714. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of application parameters for this application.)
  7715. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO'
  7716. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO)
  7717. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  7718. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  7719. 2019-12-01 20:56:33.754 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7720. 2019-12-01 20:56:33.755 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'HMSConfig'
  7721. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7722. )
  7723. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7724. 2019-12-01 20:56:33.755 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'HMSPush' to bean named 'HMSConfig'
  7725. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7726. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7727. '
  7728. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7729. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7730. 2019-12-01 20:56:33.755 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'HMSPush'
  7731. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7732. 2019-12-01 20:56:33.755 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'androidPushServiceImpl' to bean named 'HMSPush'
  7733. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7734. 2019-12-01 20:56:33.755 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'androidPushServiceImpl': AutowiredFieldElement for private cn.wildfirechat.push.android.meizu.MeiZuPush cn.wildfirechat.push.android.AndroidPushServiceImpl.meiZuPush
  7735. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@9008671)
  7736. 2019-12-01 20:56:33.755 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7737. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7738. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7739. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7740. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7741. )
  7742. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7743. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7744. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7745. 2019-12-01 20:56:33.756 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7746. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7747. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7748. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findConstraints'
  7749. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findConstraints)
  7750. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of security constraints for this web application. If there are none, a zero-length array is returned.'
  7751. 2019-12-01 20:56:33.757 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of security constraints for this web application. If there are none, a zero-length array is returned.)
  7752. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO'
  7753. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO)
  7754. 2019-12-01 20:56:33.758 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'meiZuPush'
  7755. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  7756. 2019-12-01 20:56:33.758 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'meiZuPush'
  7757. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  7758. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7759. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7760. )
  7761. 2019-12-01 20:56:33.758 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7762. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7763. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7764. '
  7765. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7766. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7767. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7768. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7769. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5a0adb82)
  7770. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7771. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7772. 2019-12-01 20:56:33.759 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7773. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7774. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7775. )
  7776. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7777. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7778. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7779. 2019-12-01 20:56:33.760 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Found init method on class [cn.wildfirechat.push.android.meizu.MeiZuPush]: public void cn.wildfirechat.push.android.meizu.MeiZuPush.init()
  7780. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7781. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7782. 2019-12-01 20:56:33.760 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Registered init method on class [cn.wildfirechat.push.android.meizu.MeiZuPush]: org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement@316510
  7783. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7784. 2019-12-01 20:56:33.760 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findContainerListenerNames'
  7785. 2019-12-01 20:56:33.763 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findContainerListenerNames)
  7786. 2019-12-01 20:56:33.760 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.meizu.MeiZuPush]: AutowiredFieldElement for private cn.wildfirechat.push.android.meizu.MeiZuConfig cn.wildfirechat.push.android.meizu.MeiZuPush.mConfig
  7787. 2019-12-01 20:56:33.765 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of container listener class names configured for this application.'
  7788. 2019-12-01 20:56:33.765 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'meiZuPush' to allow for resolving potential circular references
  7789. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of container listener class names configured for this application.)
  7790. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO'
  7791. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO)
  7792. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;'
  7793. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;)
  7794. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7795. 2019-12-01 20:56:33.766 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7796. )
  7797. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7798. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7799. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7800. '
  7801. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7802. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7803. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7804. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7805. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@42f73a05)
  7806. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7807. 2019-12-01 20:56:33.767 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'meiZuPush': AutowiredFieldElement for private cn.wildfirechat.push.android.meizu.MeiZuConfig cn.wildfirechat.push.android.meizu.MeiZuPush.mConfig
  7808. 2019-12-01 20:56:33.767 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7809. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7810. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7811. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7812. )
  7813. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7814. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7815. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7816. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7817. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7818. 2019-12-01 20:56:33.768 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'meiZuConfig'
  7819. 2019-12-01 20:56:33.768 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'meiZuConfig'
  7820. 2019-12-01 20:56:33.768 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7821. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findErrorPage'
  7822. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findErrorPage)
  7823. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the error page entry for the specified HTTP error code, if any; otherwise return null'
  7824. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the error page entry for the specified HTTP error code, if any; otherwise return null)
  7825. 2019-12-01 20:56:33.769 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'meiZuConfig' to allow for resolving potential circular references
  7826. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7827. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7828. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  7829. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  7830. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7831. 2019-12-01 20:56:33.769 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7832. )
  7833. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7834. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter'
  7835. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7836. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo
  7837. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7838. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties
  7839. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'errorCode'
  7840. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=errorCode)
  7841. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Error code to look up'
  7842. 2019-12-01 20:56:33.770 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Error code to look up)
  7843. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int'
  7844. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int)
  7845. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7846. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter)
  7847. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter'
  7848. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=''
  7849. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7850. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7851. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7852. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo]
  7853. 2019-12-01 20:56:33.771 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3ce3ccf9)
  7854. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo
  7855. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7856. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null]
  7857. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo
  7858. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7859. )
  7860. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation)
  7861. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation'
  7862. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='
  7863. '
  7864. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7865. 2019-12-01 20:56:33.772 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[]
  7866. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7867. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7868. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@315df61a)
  7869. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo
  7870. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[]
  7871. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7872. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo
  7873. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7874. )
  7875. 2019-12-01 20:56:33.773 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation)
  7876. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation'
  7877. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null]
  7878. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo
  7879. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[]
  7880. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties
  7881. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findErrorPage'
  7882. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findErrorPage)
  7883. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the error page entry for the specified Java exception type, if any; otherwise return null.'
  7884. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the error page entry for the specified Java exception type, if any; otherwise return null.)
  7885. 2019-12-01 20:56:33.774 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION'
  7886. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION)
  7887. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String'
  7888. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String)
  7889. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo]
  7890. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters(
  7891. )
  7892. 2019-12-01 20:56:33.777 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'meiZuConfig'
  7893. 2019-12-01 20:56:33.777 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'meiZuPush' to bean named 'meiZuConfig'
  7894. 2019-12-01 20:56:33.777 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Invoking init method on bean 'meiZuPush': public void cn.wildfirechat.push.android.meizu.MeiZuPush.init()
  7895. 2019-12-01 20:56:33.787 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'meiZuPush'
  7896. 2019-12-01 20:56:33.787 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'androidPushServiceImpl' to bean named 'meiZuPush'
  7897. 2019-12-01 20:56:33.788 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'androidPushServiceImpl': AutowiredFieldElement for private cn.wildfirechat.push.android.xiaomi.XiaomiPush cn.wildfirechat.push.android.AndroidPushServiceImpl.xiaomiPush
  7898. 2019-12-01 20:56:33.788 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'xiaomiPush'
  7899. 2019-12-01 20:56:33.789 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'xiaomiPush'
  7900. 2019-12-01 20:56:33.789 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.android.xiaomi.XiaomiPush]: AutowiredFieldElement for private cn.wildfirechat.push.android.xiaomi.XiaomiConfig cn.wildfirechat.push.android.xiaomi.XiaomiPush.mConfig
  7901. 2019-12-01 20:56:33.789 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'xiaomiPush' to allow for resolving potential circular references
  7902. 2019-12-01 20:56:33.791 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'xiaomiPush': AutowiredFieldElement for private cn.wildfirechat.push.android.xiaomi.XiaomiConfig cn.wildfirechat.push.android.xiaomi.XiaomiPush.mConfig
  7903. 2019-12-01 20:56:33.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'xiaomiConfig'
  7904. 2019-12-01 20:56:33.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'xiaomiConfig'
  7905. 2019-12-01 20:56:33.793 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'xiaomiConfig' to allow for resolving potential circular references
  7906. 2019-12-01 20:56:33.801 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'xiaomiConfig'
  7907. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'xiaomiPush' to bean named 'xiaomiConfig'
  7908. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'xiaomiPush'
  7909. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'androidPushServiceImpl' to bean named 'xiaomiPush'
  7910. 2019-12-01 20:56:33.775 DEBUG 1725 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter)
  7911. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'androidPushServiceImpl'
  7912. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'pushController' to bean named 'androidPushServiceImpl'
  7913. 2019-12-01 20:56:33.802 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'pushController': AutowiredFieldElement for private cn.wildfirechat.push.ios.IOSPushService cn.wildfirechat.push.PushController.mIOSPushService
  7914. 2019-12-01 20:56:33.803 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'IOSPushServiceImpl'
  7915. 2019-12-01 20:56:33.803 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'IOSPushServiceImpl'
  7916. 2019-12-01 20:56:33.804 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.ios.IOSPushServiceImpl]: AutowiredFieldElement for public cn.wildfirechat.push.ios.ApnsServer cn.wildfirechat.push.ios.IOSPushServiceImpl.apnsServer
  7917. 2019-12-01 20:56:33.804 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'IOSPushServiceImpl' to allow for resolving potential circular references
  7918. 2019-12-01 20:56:33.808 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'IOSPushServiceImpl': AutowiredFieldElement for public cn.wildfirechat.push.ios.ApnsServer cn.wildfirechat.push.ios.IOSPushServiceImpl.apnsServer
  7919. 2019-12-01 20:56:33.809 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apnsServer'
  7920. 2019-12-01 20:56:33.809 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'apnsServer'
  7921. 2019-12-01 20:56:33.958 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Found init method on class [cn.wildfirechat.push.ios.ApnsServer]: private void cn.wildfirechat.push.ios.ApnsServer.init()
  7922. 2019-12-01 20:56:33.958 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Registered init method on class [cn.wildfirechat.push.ios.ApnsServer]: org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement@c7787ac5
  7923. 2019-12-01 20:56:33.959 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [cn.wildfirechat.push.ios.ApnsServer]: AutowiredFieldElement for private cn.wildfirechat.push.ios.ApnsConfig cn.wildfirechat.push.ios.ApnsServer.mConfig
  7924. 2019-12-01 20:56:33.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'apnsServer' to allow for resolving potential circular references
  7925. 2019-12-01 20:56:33.961 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'apnsServer': AutowiredFieldElement for private cn.wildfirechat.push.ios.ApnsConfig cn.wildfirechat.push.ios.ApnsServer.mConfig
  7926. 2019-12-01 20:56:33.962 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apnsConfig'
  7927. 2019-12-01 20:56:33.963 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'apnsConfig'
  7928. 2019-12-01 20:56:33.964 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'apnsConfig' to allow for resolving potential circular references
  7929. 2019-12-01 20:56:33.989 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'apnsConfig'
  7930. 2019-12-01 20:56:33.989 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'apnsServer' to bean named 'apnsConfig'
  7931. 2019-12-01 20:56:33.989 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Invoking init method on bean 'apnsServer': private void cn.wildfirechat.push.ios.ApnsServer.init()
  7932. 2019-12-01 20:56:34.485 DEBUG 1725 --- [main] i.n.u.i.logging.InternalLoggerFactory : Using SLF4J as the default logging framework
  7933. 2019-12-01 20:56:34.492 DEBUG 1725 --- [main] io.netty.handler.ssl.OpenSsl : netty-tcnative not in the classpath; OpenSslEngine will be unavailable.
  7934. 2019-12-01 20:56:34.492 INFO 1725 --- [main] com.turo.pushy.apns.ApnsClientBuilder : Native SSL provider not available; will use JDK SSL provider.
  7935. 2019-12-01 20:56:34.608 DEBUG 1725 --- [main] io.netty.handler.ssl.JdkSslContext : Default protocols (JDK): [TLSv1.2, TLSv1.1, TLSv1]
  7936. 2019-12-01 20:56:34.608 DEBUG 1725 --- [main] io.netty.handler.ssl.JdkSslContext : Default cipher suites (JDK): [TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA]
  7937. 2019-12-01 20:56:34.633 DEBUG 1725 --- [main] i.n.channel.MultithreadEventLoopGroup : -Dio.netty.eventLoopThreads: 8
  7938. 2019-12-01 20:56:34.684 DEBUG 1725 --- [main] io.netty.channel.nio.NioEventLoop : -Dio.netty.noKeySetOptimization: false
  7939. 2019-12-01 20:56:34.684 DEBUG 1725 --- [main] io.netty.channel.nio.NioEventLoop : -Dio.netty.selectorAutoRebuildThreshold: 512
  7940. 2019-12-01 20:56:34.721 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : Platform: MacOS
  7941. 2019-12-01 20:56:34.729 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : -Dio.netty.noUnsafe: false
  7942. 2019-12-01 20:56:34.729 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : Java version: 8
  7943. 2019-12-01 20:56:34.731 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : sun.misc.Unsafe.theUnsafe: available
  7944. 2019-12-01 20:56:34.733 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : sun.misc.Unsafe.copyMemory: available
  7945. 2019-12-01 20:56:34.733 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.Buffer.address: available
  7946. 2019-12-01 20:56:34.735 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : direct buffer constructor: available
  7947. 2019-12-01 20:56:34.736 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.Bits.unaligned: available, true
  7948. 2019-12-01 20:56:34.736 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable prior to Java9
  7949. 2019-12-01 20:56:34.736 DEBUG 1725 --- [main] i.n.util.internal.PlatformDependent0 : java.nio.DirectByteBuffer.<init>(long, int): available
  7950. 2019-12-01 20:56:34.737 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : sun.misc.Unsafe: available
  7951. 2019-12-01 20:56:34.737 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.tmpdir: /var/folders/tx/72ygj1dx72ldwynlrxyq1j_w0000gn/T (java.io.tmpdir)
  7952. 2019-12-01 20:56:34.737 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.bitMode: 64 (sun.arch.data.model)
  7953. 2019-12-01 20:56:34.739 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.noPreferDirect: false
  7954. 2019-12-01 20:56:34.740 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.maxDirectMemory: 1908932608 bytes
  7955. 2019-12-01 20:56:34.740 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : -Dio.netty.uninitializedArrayAllocationThreshold: -1
  7956. 2019-12-01 20:56:34.742 DEBUG 1725 --- [main] io.netty.util.internal.CleanerJava6 : java.nio.ByteBuffer.cleaner(): available
  7957. 2019-12-01 20:56:34.757 DEBUG 1725 --- [main] i.netty.util.internal.PlatformDependent : org.jctools-core.MpscChunkedArrayQueue: available
  7958. 2019-12-01 20:56:34.829 DEBUG 1725 --- [main] .d.DefaultDnsServerAddressStreamProvider : Default DNS servers: [/240e:40:8000:0:0:0:0:10:53, /240e:40:8000:0:0:0:0:11:53, /192.168.1.1:53] (sun.net.dns.ResolverConfiguration)
  7959. 2019-12-01 20:56:34.862 DEBUG 1725 --- [main] io.netty.util.NetUtil : -Djava.net.preferIPv4Stack: false
  7960. 2019-12-01 20:56:34.862 DEBUG 1725 --- [main] io.netty.util.NetUtil : -Djava.net.preferIPv6Addresses: false
  7961. 2019-12-01 20:56:34.864 DEBUG 1725 --- [main] io.netty.util.NetUtil : Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0)
  7962. 2019-12-01 20:56:34.866 DEBUG 1725 --- [main] io.netty.util.NetUtil : Failed to get SOMAXCONN from sysctl and file /proc/sys/net/core/somaxconn. Default: 128
  7963. 2019-12-01 20:56:34.887 DEBUG 1725 --- [main] i.n.u.internal.InternalThreadLocalMap : -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
  7964. 2019-12-01 20:56:34.887 DEBUG 1725 --- [main] i.n.u.internal.InternalThreadLocalMap : -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
  7965. 2019-12-01 20:56:35.050 INFO 1725 --- [main] com.turo.pushy.apns.ApnsClientBuilder : Native SSL provider not available; will use JDK SSL provider.
  7966. 2019-12-01 20:56:35.052 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'apnsServer'
  7967. 2019-12-01 20:56:35.052 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'IOSPushServiceImpl' to bean named 'apnsServer'
  7968. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'IOSPushServiceImpl'
  7969. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'pushController' to bean named 'IOSPushServiceImpl'
  7970. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'pushController'
  7971. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'androidPushServiceImpl'
  7972. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'HMSConfig'
  7973. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'HMSPush'
  7974. 2019-12-01 20:56:35.053 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'meiZuConfig'
  7975. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'meiZuPush'
  7976. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'xiaomiConfig'
  7977. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'xiaomiPush'
  7978. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'apnsConfig'
  7979. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'apnsServer'
  7980. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'IOSPushServiceImpl'
  7981. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
  7982. 2019-12-01 20:56:35.054 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
  7983. 2019-12-01 20:56:35.056 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' to allow for resolving potential circular references
  7984. 2019-12-01 20:56:35.059 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
  7985. 2019-12-01 20:56:35.060 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
  7986. 2019-12-01 20:56:35.060 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
  7987. 2019-12-01 20:56:35.060 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' to allow for resolving potential circular references
  7988. 2019-12-01 20:56:35.064 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
  7989. 2019-12-01 20:56:35.064 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry'
  7990. 2019-12-01 20:56:35.064 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'propertySourcesPlaceholderConfigurer'
  7991. 2019-12-01 20:56:35.064 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
  7992. 2019-12-01 20:56:35.064 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
  7993. 2019-12-01 20:56:35.065 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' to allow for resolving potential circular references
  7994. 2019-12-01 20:56:35.068 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
  7995. 2019-12-01 20:56:35.068 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
  7996. 2019-12-01 20:56:35.068 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'websocketServletWebServerCustomizer'
  7997. 2019-12-01 20:56:35.069 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
  7998. 2019-12-01 20:56:35.092 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'websocketServletWebServerCustomizer' to allow for resolving potential circular references
  7999. 2019-12-01 20:56:35.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'websocketServletWebServerCustomizer'
  8000. 2019-12-01 20:56:35.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
  8001. 2019-12-01 20:56:35.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
  8002. 2019-12-01 20:56:35.098 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' to allow for resolving potential circular references
  8003. 2019-12-01 20:56:35.102 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
  8004. 2019-12-01 20:56:35.103 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
  8005. 2019-12-01 20:56:35.103 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
  8006. 2019-12-01 20:56:35.103 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' to allow for resolving potential circular references
  8007. 2019-12-01 20:56:35.112 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
  8008. 2019-12-01 20:56:35.112 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
  8009. 2019-12-01 20:56:35.112 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'tomcatServletWebServerFactory'
  8010. 2019-12-01 20:56:35.112 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
  8011. 2019-12-01 20:56:35.193 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'tomcatServletWebServerFactory' to allow for resolving potential circular references
  8012. 2019-12-01 20:56:35.214 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'websocketServletWebServerCustomizer'
  8013. 2019-12-01 20:56:35.214 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
  8014. 2019-12-01 20:56:35.214 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'servletWebServerFactoryCustomizer'
  8015. 2019-12-01 20:56:35.214 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  8016. 2019-12-01 20:56:35.214 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  8017. 2019-12-01 20:56:35.215 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' to allow for resolving potential circular references
  8018. 2019-12-01 20:56:35.252 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  8019. 2019-12-01 20:56:35.253 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8020. 2019-12-01 20:56:35.253 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8021. 2019-12-01 20:56:35.261 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' to allow for resolving potential circular references
  8022. 2019-12-01 20:56:35.293 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8023. 2019-12-01 20:56:35.293 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8024. 2019-12-01 20:56:35.299 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'servletWebServerFactoryCustomizer' to allow for resolving potential circular references
  8025. 2019-12-01 20:56:35.303 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'servletWebServerFactoryCustomizer'
  8026. 2019-12-01 20:56:35.304 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
  8027. 2019-12-01 20:56:35.304 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'tomcatServletWebServerFactoryCustomizer'
  8028. 2019-12-01 20:56:35.304 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  8029. 2019-12-01 20:56:35.304 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8030. 2019-12-01 20:56:35.304 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8031. 2019-12-01 20:56:35.305 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'tomcatServletWebServerFactoryCustomizer' to allow for resolving potential circular references
  8032. 2019-12-01 20:56:35.309 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'tomcatServletWebServerFactoryCustomizer'
  8033. 2019-12-01 20:56:35.309 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
  8034. 2019-12-01 20:56:35.309 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'tomcatWebServerFactoryCustomizer'
  8035. 2019-12-01 20:56:35.309 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
  8036. 2019-12-01 20:56:35.309 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
  8037. 2019-12-01 20:56:35.310 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' to allow for resolving potential circular references
  8038. 2019-12-01 20:56:35.326 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
  8039. 2019-12-01 20:56:35.327 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'environment'
  8040. 2019-12-01 20:56:35.328 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8041. 2019-12-01 20:56:35.328 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
  8042. 2019-12-01 20:56:35.328 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8043. 2019-12-01 20:56:35.348 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'tomcatWebServerFactoryCustomizer' to allow for resolving potential circular references
  8044. 2019-12-01 20:56:35.351 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'tomcatWebServerFactoryCustomizer'
  8045. 2019-12-01 20:56:35.351 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
  8046. 2019-12-01 20:56:35.351 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'localeCharsetMappingsCustomizer'
  8047. 2019-12-01 20:56:35.352 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  8048. 2019-12-01 20:56:35.352 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  8049. 2019-12-01 20:56:35.352 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$e515fd81] - unable to determine constructor/method parameter names
  8050. 2019-12-01 20:56:35.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8051. 2019-12-01 20:56:35.353 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8052. 2019-12-01 20:56:35.354 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties' to allow for resolving potential circular references
  8053. 2019-12-01 20:56:35.357 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8054. 2019-12-01 20:56:35.357 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8055. 2019-12-01 20:56:35.358 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' to allow for resolving potential circular references
  8056. 2019-12-01 20:56:35.361 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  8057. 2019-12-01 20:56:35.366 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'localeCharsetMappingsCustomizer' to allow for resolving potential circular references
  8058. 2019-12-01 20:56:35.378 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'localeCharsetMappingsCustomizer'
  8059. 2019-12-01 20:56:35.430 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageCustomizer'
  8060. 2019-12-01 20:56:35.431 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'errorPageCustomizer'
  8061. 2019-12-01 20:56:35.432 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8062. 2019-12-01 20:56:35.432 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8063. 2019-12-01 20:56:35.433 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$3d6d4c64] - unable to determine constructor/method parameter names
  8064. 2019-12-01 20:56:35.433 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8065. 2019-12-01 20:56:35.434 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServletRegistration'
  8066. 2019-12-01 20:56:35.434 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'dispatcherServletRegistration'
  8067. 2019-12-01 20:56:35.435 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
  8068. 2019-12-01 20:56:35.435 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
  8069. 2019-12-01 20:56:35.435 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$c3c86b4f] - unable to determine constructor/method parameter names
  8070. 2019-12-01 20:56:35.436 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8071. 2019-12-01 20:56:35.437 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8072. 2019-12-01 20:56:35.437 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8073. 2019-12-01 20:56:35.438 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' to allow for resolving potential circular references
  8074. 2019-12-01 20:56:35.443 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8075. 2019-12-01 20:56:35.446 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8076. 2019-12-01 20:56:35.465 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8077. 2019-12-01 20:56:35.466 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartConfigElement'
  8078. 2019-12-01 20:56:35.466 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'multipartConfigElement'
  8079. 2019-12-01 20:56:35.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  8080. 2019-12-01 20:56:35.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  8081. 2019-12-01 20:56:35.467 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$5406858e] - unable to determine constructor/method parameter names
  8082. 2019-12-01 20:56:35.468 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
  8083. 2019-12-01 20:56:35.468 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
  8084. 2019-12-01 20:56:35.469 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' to allow for resolving potential circular references
  8085. 2019-12-01 20:56:35.488 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
  8086. 2019-12-01 20:56:35.488 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : 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'
  8087. 2019-12-01 20:56:35.488 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' to allow for resolving potential circular references
  8088. 2019-12-01 20:56:35.492 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  8089. 2019-12-01 20:56:35.503 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'multipartConfigElement' to allow for resolving potential circular references
  8090. 2019-12-01 20:56:35.505 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'multipartConfigElement'
  8091. 2019-12-01 20:56:35.505 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' to allow for resolving potential circular references
  8092. 2019-12-01 20:56:35.510 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
  8093. 2019-12-01 20:56:35.511 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServlet'
  8094. 2019-12-01 20:56:35.511 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'dispatcherServlet'
  8095. 2019-12-01 20:56:35.511 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
  8096. 2019-12-01 20:56:35.511 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
  8097. 2019-12-01 20:56:35.512 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$61c0d6a8] - unable to determine constructor/method parameter names
  8098. 2019-12-01 20:56:35.512 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8099. 2019-12-01 20:56:35.517 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8100. 2019-12-01 20:56:35.517 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' to allow for resolving potential circular references
  8101. 2019-12-01 20:56:35.521 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
  8102. 2019-12-01 20:56:35.573 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'dispatcherServlet' to allow for resolving potential circular references
  8103. 2019-12-01 20:56:35.587 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'dispatcherServlet'
  8104. 2019-12-01 20:56:35.587 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
  8105. 2019-12-01 20:56:35.605 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'dispatcherServletRegistration' to allow for resolving potential circular references
  8106. 2019-12-01 20:56:35.615 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'dispatcherServletRegistration'
  8107. 2019-12-01 20:56:35.615 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : 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'
  8108. 2019-12-01 20:56:35.615 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'dispatcherServletRegistration'
  8109. 2019-12-01 20:56:35.616 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'conventionErrorViewResolver'
  8110. 2019-12-01 20:56:35.617 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'conventionErrorViewResolver'
  8111. 2019-12-01 20:56:35.617 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
  8112. 2019-12-01 20:56:35.618 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
  8113. 2019-12-01 20:56:35.618 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$52022104] - unable to determine constructor/method parameter names
  8114. 2019-12-01 20:56:35.620 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8115. 2019-12-01 20:56:35.621 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8116. 2019-12-01 20:56:35.625 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' to allow for resolving potential circular references
  8117. 2019-12-01 20:56:35.628 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8118. 2019-12-01 20:56:35.629 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.web.context.support.GenericWebApplicationContext@7139992f'
  8119. 2019-12-01 20:56:35.629 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8120. 2019-12-01 20:56:35.629 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' to allow for resolving potential circular references
  8121. 2019-12-01 20:56:35.633 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
  8122. 2019-12-01 20:56:35.644 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'conventionErrorViewResolver' to allow for resolving potential circular references
  8123. 2019-12-01 20:56:35.648 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'conventionErrorViewResolver'
  8124. 2019-12-01 20:56:35.656 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' to allow for resolving potential circular references
  8125. 2019-12-01 20:56:35.663 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8126. 2019-12-01 20:56:35.673 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'errorPageCustomizer' to allow for resolving potential circular references
  8127. 2019-12-01 20:56:35.676 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'errorPageCustomizer'
  8128. 2019-12-01 20:56:35.677 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'tomcatServletWebServerFactory'
  8129. 2019-12-01 20:56:35.677 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
  8130. 2019-12-01 20:56:35.677 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'servletWebServerFactoryCustomizer'
  8131. 2019-12-01 20:56:35.677 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
  8132. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
  8133. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  8134. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
  8135. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
  8136. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
  8137. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
  8138. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'dispatcherServlet'
  8139. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8140. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
  8141. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'dispatcherServletRegistration'
  8142. 2019-12-01 20:56:35.678 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
  8143. 2019-12-01 20:56:35.679 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
  8144. 2019-12-01 20:56:35.679 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' to allow for resolving potential circular references
  8145. 2019-12-01 20:56:35.682 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
  8146. 2019-12-01 20:56:35.682 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
  8147. 2019-12-01 20:56:35.682 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
  8148. 2019-12-01 20:56:35.683 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' to allow for resolving potential circular references
  8149. 2019-12-01 20:56:35.688 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
  8150. 2019-12-01 20:56:35.688 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultValidator'
  8151. 2019-12-01 20:56:35.688 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'defaultValidator'
  8152. 2019-12-01 20:56:35.703 DEBUG 1725 --- [main] o.h.v.i.e.resolver.TraversableResolvers : Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
  8153. 2019-12-01 20:56:35.703 DEBUG 1725 --- [main] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL
  8154. 2019-12-01 20:56:35.705 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'defaultValidator' to allow for resolving potential circular references
  8155. 2019-12-01 20:56:35.720 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'defaultValidator'
  8156. 2019-12-01 20:56:35.721 DEBUG 1725 --- [main] o.h.v.i.e.resolver.TraversableResolvers : Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
  8157. 2019-12-01 20:56:35.722 DEBUG 1725 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
  8158. 2019-12-01 20:56:35.723 DEBUG 1725 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
  8159. 2019-12-01 20:56:35.729 DEBUG 1725 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1
  8160. 2019-12-01 20:56:35.730 DEBUG 1725 --- [main] o.h.v.i.xml.config.ValidationXmlParser : Trying to load META-INF/validation.xml for XML based Validator configuration.
  8161. 2019-12-01 20:56:35.731 DEBUG 1725 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via user class loader
  8162. 2019-12-01 20:56:35.734 DEBUG 1725 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via TCCL
  8163. 2019-12-01 20:56:35.735 DEBUG 1725 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via Hibernate Validator's class loader
  8164. 2019-12-01 20:56:35.735 DEBUG 1725 --- [main] o.h.v.i.xml.config.ValidationXmlParser : No META-INF/validation.xml found. Using annotation based configuration only.
  8165. 2019-12-01 20:56:35.742 DEBUG 1725 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
  8166. 2019-12-01 20:56:35.742 DEBUG 1725 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
  8167. 2019-12-01 20:56:35.742 DEBUG 1725 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
  8168. 2019-12-01 20:56:35.743 DEBUG 1725 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
  8169. 2019-12-01 20:56:35.743 DEBUG 1725 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
  8170. 2019-12-01 20:56:35.744 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'defaultValidator'
  8171. 2019-12-01 20:56:35.744 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'methodValidationPostProcessor'
  8172. 2019-12-01 20:56:35.744 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  8173. 2019-12-01 20:56:35.744 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  8174. 2019-12-01 20:56:35.752 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' to allow for resolving potential circular references
  8175. 2019-12-01 20:56:35.756 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  8176. 2019-12-01 20:56:35.756 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'error'
  8177. 2019-12-01 20:56:35.756 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'error'
  8178. 2019-12-01 20:56:35.756 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  8179. 2019-12-01 20:56:35.761 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'error' to allow for resolving potential circular references
  8180. 2019-12-01 20:56:35.764 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'error'
  8181. 2019-12-01 20:56:35.764 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameViewResolver'
  8182. 2019-12-01 20:56:35.764 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'beanNameViewResolver'
  8183. 2019-12-01 20:56:35.764 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
  8184. 2019-12-01 20:56:35.766 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'beanNameViewResolver' to allow for resolving potential circular references
  8185. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'beanNameViewResolver'
  8186. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
  8187. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'conventionErrorViewResolver'
  8188. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8189. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorAttributes'
  8190. 2019-12-01 20:56:35.773 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'errorAttributes'
  8191. 2019-12-01 20:56:35.774 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8192. 2019-12-01 20:56:35.775 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'errorAttributes' to allow for resolving potential circular references
  8193. 2019-12-01 20:56:35.779 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'errorAttributes'
  8194. 2019-12-01 20:56:35.780 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'basicErrorController'
  8195. 2019-12-01 20:56:35.780 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'basicErrorController'
  8196. 2019-12-01 20:56:35.780 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
  8197. 2019-12-01 20:56:35.781 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'errorAttributes'
  8198. 2019-12-01 20:56:35.781 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes'
  8199. 2019-12-01 20:56:35.786 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'basicErrorController' to allow for resolving potential circular references
  8200. 2019-12-01 20:56:35.791 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'basicErrorController'
  8201. 2019-12-01 20:56:35.791 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'errorPageCustomizer'
  8202. 2019-12-01 20:56:35.791 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
  8203. 2019-12-01 20:56:35.791 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8204. 2019-12-01 20:56:35.791 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  8205. 2019-12-01 20:56:35.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  8206. 2019-12-01 20:56:35.792 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration$$EnhancerBySpringCGLIB$$daef6a8a] - unable to determine constructor/method parameter names
  8207. 2019-12-01 20:56:35.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8208. 2019-12-01 20:56:35.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8209. 2019-12-01 20:56:35.793 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' to allow for resolving potential circular references
  8210. 2019-12-01 20:56:35.797 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  8211. 2019-12-01 20:56:35.797 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'faviconHandlerMapping'
  8212. 2019-12-01 20:56:35.797 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'faviconHandlerMapping'
  8213. 2019-12-01 20:56:35.798 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  8214. 2019-12-01 20:56:35.814 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'faviconRequestHandler'
  8215. 2019-12-01 20:56:35.814 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'faviconRequestHandler'
  8216. 2019-12-01 20:56:35.815 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration'
  8217. 2019-12-01 20:56:35.829 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'faviconRequestHandler' to allow for resolving potential circular references
  8218. 2019-12-01 20:56:35.843 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'faviconRequestHandler'
  8219. 2019-12-01 20:56:35.848 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'faviconRequestHandler'
  8220. 2019-12-01 20:56:35.851 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'faviconHandlerMapping' to allow for resolving potential circular references
  8221. 2019-12-01 20:56:35.866 INFO 1725 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8222. 2019-12-01 20:56:35.867 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'faviconHandlerMapping'
  8223. 2019-12-01 20:56:35.867 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'faviconRequestHandler'
  8224. 2019-12-01 20:56:35.867 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8225. 2019-12-01 20:56:35.867 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8226. 2019-12-01 20:56:35.868 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration$$EnhancerBySpringCGLIB$$7cae975f] - unable to determine constructor/method parameter names
  8227. 2019-12-01 20:56:35.870 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24'
  8228. 2019-12-01 20:56:35.871 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8229. 2019-12-01 20:56:35.887 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Registered injected element on class [org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration$$EnhancerBySpringCGLIB$$7cae975f]: AutowiredMethodElement for public void org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration.setConfigurers(java.util.List)
  8230. 2019-12-01 20:56:35.887 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' to allow for resolving potential circular references
  8231. 2019-12-01 20:56:35.887 DEBUG 1725 --- [main] o.s.b.f.annotation.InjectionMetadata : Processing injected element of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration': AutowiredMethodElement for public void org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration.setConfigurers(java.util.List)
  8232. 2019-12-01 20:56:35.889 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8233. 2019-12-01 20:56:35.889 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8234. 2019-12-01 20:56:35.891 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$EnhancerBySpringCGLIB$$1eb26244] - unable to determine constructor/method parameter names
  8235. 2019-12-01 20:56:35.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8236. 2019-12-01 20:56:35.902 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8237. 2019-12-01 20:56:35.902 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties'
  8238. 2019-12-01 20:56:35.902 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
  8239. 2019-12-01 20:56:35.902 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24'
  8240. 2019-12-01 20:56:35.903 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' to allow for resolving potential circular references
  8241. 2019-12-01 20:56:35.910 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8242. 2019-12-01 20:56:35.911 DEBUG 1725 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' to bean named 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8243. 2019-12-01 20:56:35.911 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8244. 2019-12-01 20:56:35.911 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerAdapter'
  8245. 2019-12-01 20:56:35.911 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'requestMappingHandlerAdapter'
  8246. 2019-12-01 20:56:35.911 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8247. 2019-12-01 20:56:35.949 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcContentNegotiationManager'
  8248. 2019-12-01 20:56:35.950 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcContentNegotiationManager'
  8249. 2019-12-01 20:56:35.950 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8250. 2019-12-01 20:56:35.953 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcContentNegotiationManager' to allow for resolving potential circular references
  8251. 2019-12-01 20:56:35.957 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcContentNegotiationManager'
  8252. 2019-12-01 20:56:35.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'messageConverters'
  8253. 2019-12-01 20:56:35.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'messageConverters'
  8254. 2019-12-01 20:56:35.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
  8255. 2019-12-01 20:56:35.959 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
  8256. 2019-12-01 20:56:35.959 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$2bf51273] - unable to determine constructor/method parameter names
  8257. 2019-12-01 20:56:35.963 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'stringHttpMessageConverter'
  8258. 2019-12-01 20:56:35.963 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'stringHttpMessageConverter'
  8259. 2019-12-01 20:56:35.963 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
  8260. 2019-12-01 20:56:35.963 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
  8261. 2019-12-01 20:56:35.964 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$5f02d913] - unable to determine constructor/method parameter names
  8262. 2019-12-01 20:56:35.966 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8263. 2019-12-01 20:56:35.966 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' via constructor to bean named 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8264. 2019-12-01 20:56:35.966 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' to allow for resolving potential circular references
  8265. 2019-12-01 20:56:35.970 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
  8266. 2019-12-01 20:56:35.983 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'stringHttpMessageConverter' to allow for resolving potential circular references
  8267. 2019-12-01 20:56:35.988 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'stringHttpMessageConverter'
  8268. 2019-12-01 20:56:35.989 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
  8269. 2019-12-01 20:56:35.989 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mappingJackson2HttpMessageConverter'
  8270. 2019-12-01 20:56:35.989 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
  8271. 2019-12-01 20:56:35.990 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
  8272. 2019-12-01 20:56:35.990 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' to allow for resolving potential circular references
  8273. 2019-12-01 20:56:35.994 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
  8274. 2019-12-01 20:56:35.996 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonObjectMapper'
  8275. 2019-12-01 20:56:35.996 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'jacksonObjectMapper'
  8276. 2019-12-01 20:56:35.997 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
  8277. 2019-12-01 20:56:35.997 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
  8278. 2019-12-01 20:56:35.997 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' to allow for resolving potential circular references
  8279. 2019-12-01 20:56:36.001 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
  8280. 2019-12-01 20:56:36.002 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonObjectMapperBuilder'
  8281. 2019-12-01 20:56:36.002 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'jacksonObjectMapperBuilder'
  8282. 2019-12-01 20:56:36.003 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
  8283. 2019-12-01 20:56:36.003 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
  8284. 2019-12-01 20:56:36.005 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$1fa18889] - unable to determine constructor/method parameter names
  8285. 2019-12-01 20:56:36.006 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' via constructor to bean named 'org.springframework.web.context.support.GenericWebApplicationContext@7139992f'
  8286. 2019-12-01 20:56:36.006 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' to allow for resolving potential circular references
  8287. 2019-12-01 20:56:36.011 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
  8288. 2019-12-01 20:56:36.012 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
  8289. 2019-12-01 20:56:36.012 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'standardJacksonObjectMapperBuilderCustomizer'
  8290. 2019-12-01 20:56:36.012 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
  8291. 2019-12-01 20:56:36.012 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
  8292. 2019-12-01 20:56:36.013 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' to allow for resolving potential circular references
  8293. 2019-12-01 20:56:36.020 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
  8294. 2019-12-01 20:56:36.021 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
  8295. 2019-12-01 20:56:36.021 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
  8296. 2019-12-01 20:56:36.021 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' to allow for resolving potential circular references
  8297. 2019-12-01 20:56:36.025 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
  8298. 2019-12-01 20:56:36.026 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.web.context.support.GenericWebApplicationContext@7139992f'
  8299. 2019-12-01 20:56:36.026 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
  8300. 2019-12-01 20:56:36.044 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'standardJacksonObjectMapperBuilderCustomizer' to allow for resolving potential circular references
  8301. 2019-12-01 20:56:36.049 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'standardJacksonObjectMapperBuilderCustomizer'
  8302. 2019-12-01 20:56:36.049 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
  8303. 2019-12-01 20:56:36.057 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterNamesModule'
  8304. 2019-12-01 20:56:36.057 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'parameterNamesModule'
  8305. 2019-12-01 20:56:36.057 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
  8306. 2019-12-01 20:56:36.058 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
  8307. 2019-12-01 20:56:36.058 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' to allow for resolving potential circular references
  8308. 2019-12-01 20:56:36.062 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
  8309. 2019-12-01 20:56:36.084 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'parameterNamesModule' to allow for resolving potential circular references
  8310. 2019-12-01 20:56:36.096 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'parameterNamesModule'
  8311. 2019-12-01 20:56:36.096 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jsonComponentModule'
  8312. 2019-12-01 20:56:36.096 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'jsonComponentModule'
  8313. 2019-12-01 20:56:36.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
  8314. 2019-12-01 20:56:36.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
  8315. 2019-12-01 20:56:36.097 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' to allow for resolving potential circular references
  8316. 2019-12-01 20:56:36.101 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
  8317. 2019-12-01 20:56:36.106 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Found init method on class [org.springframework.boot.jackson.JsonComponentModule]: public void org.springframework.boot.jackson.JsonComponentModule.registerJsonComponents()
  8318. 2019-12-01 20:56:36.106 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Registered init method on class [org.springframework.boot.jackson.JsonComponentModule]: org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement@65126ba1
  8319. 2019-12-01 20:56:36.106 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'jsonComponentModule' to allow for resolving potential circular references
  8320. 2019-12-01 20:56:36.110 DEBUG 1725 --- [main] .s.c.a.CommonAnnotationBeanPostProcessor : Invoking init method on bean 'jsonComponentModule': public void org.springframework.boot.jackson.JsonComponentModule.registerJsonComponents()
  8321. 2019-12-01 20:56:36.118 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'jsonComponentModule'
  8322. 2019-12-01 20:56:36.120 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'jacksonObjectMapperBuilder' to allow for resolving potential circular references
  8323. 2019-12-01 20:56:36.125 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'jacksonObjectMapperBuilder'
  8324. 2019-12-01 20:56:36.125 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
  8325. 2019-12-01 20:56:36.165 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'jacksonObjectMapper' to allow for resolving potential circular references
  8326. 2019-12-01 20:56:36.182 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'jacksonObjectMapper'
  8327. 2019-12-01 20:56:36.182 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
  8328. 2019-12-01 20:56:36.186 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mappingJackson2HttpMessageConverter' to allow for resolving potential circular references
  8329. 2019-12-01 20:56:36.194 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mappingJackson2HttpMessageConverter'
  8330. 2019-12-01 20:56:36.199 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' to allow for resolving potential circular references
  8331. 2019-12-01 20:56:36.203 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
  8332. 2019-12-01 20:56:36.213 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'messageConverters' to allow for resolving potential circular references
  8333. 2019-12-01 20:56:36.216 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'messageConverters'
  8334. 2019-12-01 20:56:36.217 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcConversionService'
  8335. 2019-12-01 20:56:36.217 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcConversionService'
  8336. 2019-12-01 20:56:36.218 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8337. 2019-12-01 20:56:36.225 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcConversionService' to allow for resolving potential circular references
  8338. 2019-12-01 20:56:36.242 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcConversionService'
  8339. 2019-12-01 20:56:36.248 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcValidator'
  8340. 2019-12-01 20:56:36.248 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcValidator'
  8341. 2019-12-01 20:56:36.248 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8342. 2019-12-01 20:56:36.251 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'defaultValidator'
  8343. 2019-12-01 20:56:36.251 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcValidator' to allow for resolving potential circular references
  8344. 2019-12-01 20:56:36.255 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'mvcValidator'
  8345. 2019-12-01 20:56:36.256 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcValidator'
  8346. 2019-12-01 20:56:36.279 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'requestMappingHandlerAdapter' to allow for resolving potential circular references
  8347. 2019-12-01 20:56:36.294 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'requestMappingHandlerAdapter'
  8348. 2019-12-01 20:56:36.294 INFO 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  8349. 2019-12-01 20:56:36.361 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'requestMappingHandlerAdapter'
  8350. 2019-12-01 20:56:36.362 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerMapping'
  8351. 2019-12-01 20:56:36.362 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'requestMappingHandlerMapping'
  8352. 2019-12-01 20:56:36.362 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8353. 2019-12-01 20:56:36.374 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcConversionService'
  8354. 2019-12-01 20:56:36.376 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcResourceUrlProvider'
  8355. 2019-12-01 20:56:36.376 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcResourceUrlProvider'
  8356. 2019-12-01 20:56:36.376 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8357. 2019-12-01 20:56:36.382 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcResourceUrlProvider' to allow for resolving potential circular references
  8358. 2019-12-01 20:56:36.386 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcResourceUrlProvider'
  8359. 2019-12-01 20:56:36.388 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8360. 2019-12-01 20:56:36.395 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'requestMappingHandlerMapping' to allow for resolving potential circular references
  8361. 2019-12-01 20:56:36.419 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'requestMappingHandlerMapping'
  8362. 2019-12-01 20:56:36.420 DEBUG 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking for request mappings in application context: org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  8363. 2019-12-01 20:56:36.452 DEBUG 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 request handler methods found on class cn.wildfirechat.push.PushController: {public java.lang.Object cn.wildfirechat.push.PushController.iOSPush(cn.wildfirechat.push.PushMessage)={[/ios/push],methods=[POST],produces=[application/json;charset=UTF-8]}, public java.lang.Object cn.wildfirechat.push.PushController.androidPush(cn.wildfirechat.push.PushMessage)={[/android/push],methods=[POST],produces=[application/json;charset=UTF-8]}}
  8364. 2019-12-01 20:56:36.454 INFO 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/ios/push],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.Object cn.wildfirechat.push.PushController.iOSPush(cn.wildfirechat.push.PushMessage)
  8365. 2019-12-01 20:56:36.455 INFO 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/android/push],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.Object cn.wildfirechat.push.PushController.androidPush(cn.wildfirechat.push.PushMessage)
  8366. 2019-12-01 20:56:36.458 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path:/error' in any property source
  8367. 2019-12-01 20:56:36.459 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path:/error' in any property source
  8368. 2019-12-01 20:56:36.459 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path' in any property source
  8369. 2019-12-01 20:56:36.459 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path' in any property source
  8370. 2019-12-01 20:56:36.460 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path:/error' in any property source
  8371. 2019-12-01 20:56:36.460 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path:/error' in any property source
  8372. 2019-12-01 20:56:36.460 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path' in any property source
  8373. 2019-12-01 20:56:36.460 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path' in any property source
  8374. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path:/error' in any property source
  8375. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path:/error' in any property source
  8376. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path' in any property source
  8377. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'error.path' in any property source
  8378. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path:/error' in any property source
  8379. 2019-12-01 20:56:36.461 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path:/error' in any property source
  8380. 2019-12-01 20:56:36.462 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path' in any property source
  8381. 2019-12-01 20:56:36.462 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'server.error.path' in any property source
  8382. 2019-12-01 20:56:36.462 DEBUG 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 request handler methods found on class org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController: {public org.springframework.http.ResponseEntity org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)={[/error]}, public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)={[/error],produces=[text/html]}}
  8383. 2019-12-01 20:56:36.464 INFO 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
  8384. 2019-12-01 20:56:36.464 INFO 1725 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
  8385. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'requestMappingHandlerMapping'
  8386. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcConversionService'
  8387. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcValidator'
  8388. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8389. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcPathMatcher'
  8390. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcPathMatcher'
  8391. 2019-12-01 20:56:36.467 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8392. 2019-12-01 20:56:36.468 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcPathMatcher' to allow for resolving potential circular references
  8393. 2019-12-01 20:56:36.482 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcPathMatcher'
  8394. 2019-12-01 20:56:36.482 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUrlPathHelper'
  8395. 2019-12-01 20:56:36.482 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcUrlPathHelper'
  8396. 2019-12-01 20:56:36.482 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8397. 2019-12-01 20:56:36.483 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcUrlPathHelper' to allow for resolving potential circular references
  8398. 2019-12-01 20:56:36.485 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcUrlPathHelper'
  8399. 2019-12-01 20:56:36.485 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewControllerHandlerMapping'
  8400. 2019-12-01 20:56:36.486 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'viewControllerHandlerMapping'
  8401. 2019-12-01 20:56:36.486 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8402. 2019-12-01 20:56:36.487 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcPathMatcher'
  8403. 2019-12-01 20:56:36.487 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcUrlPathHelper'
  8404. 2019-12-01 20:56:36.488 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'viewControllerHandlerMapping' to allow for resolving potential circular references
  8405. 2019-12-01 20:56:36.495 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'viewControllerHandlerMapping'
  8406. 2019-12-01 20:56:36.495 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameHandlerMapping'
  8407. 2019-12-01 20:56:36.495 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'beanNameHandlerMapping'
  8408. 2019-12-01 20:56:36.496 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8409. 2019-12-01 20:56:36.497 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'beanNameHandlerMapping' to allow for resolving potential circular references
  8410. 2019-12-01 20:56:36.512 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Looking for URL mappings in application context: org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  8411. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor': no URL paths identified
  8412. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor': no URL paths identified
  8413. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor': no URL paths identified
  8414. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
  8415. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
  8416. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
  8417. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.event.internalEventListenerProcessor': no URL paths identified
  8418. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.event.internalEventListenerFactory': no URL paths identified
  8419. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'pushApplication': no URL paths identified
  8420. 2019-12-01 20:56:36.513 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory': no URL paths identified
  8421. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'pushController': no URL paths identified
  8422. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'androidPushServiceImpl': no URL paths identified
  8423. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'HMSConfig': no URL paths identified
  8424. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'HMSPush': no URL paths identified
  8425. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'meiZuConfig': no URL paths identified
  8426. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'meiZuPush': no URL paths identified
  8427. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'xiaomiConfig': no URL paths identified
  8428. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'xiaomiPush': no URL paths identified
  8429. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'apnsConfig': no URL paths identified
  8430. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'apnsServer': no URL paths identified
  8431. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'IOSPushServiceImpl': no URL paths identified
  8432. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.AutoConfigurationPackages': no URL paths identified
  8433. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration': no URL paths identified
  8434. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry': no URL paths identified
  8435. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'propertySourcesPlaceholderConfigurer': no URL paths identified
  8436. 2019-12-01 20:56:36.514 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration': no URL paths identified
  8437. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'websocketServletWebServerCustomizer': no URL paths identified
  8438. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration': no URL paths identified
  8439. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat': no URL paths identified
  8440. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'tomcatServletWebServerFactory': no URL paths identified
  8441. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration': no URL paths identified
  8442. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'servletWebServerFactoryCustomizer': no URL paths identified
  8443. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'tomcatServletWebServerFactoryCustomizer': no URL paths identified
  8444. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'server-org.springframework.boot.autoconfigure.web.ServerProperties': no URL paths identified
  8445. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor': no URL paths identified
  8446. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata': no URL paths identified
  8447. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'webServerFactoryCustomizerBeanPostProcessor': no URL paths identified
  8448. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'errorPageRegistrarBeanPostProcessor': no URL paths identified
  8449. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration': no URL paths identified
  8450. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'dispatcherServlet': no URL paths identified
  8451. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties': no URL paths identified
  8452. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration': no URL paths identified
  8453. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'dispatcherServletRegistration': no URL paths identified
  8454. 2019-12-01 20:56:36.515 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration': no URL paths identified
  8455. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration': no URL paths identified
  8456. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'defaultValidator': no URL paths identified
  8457. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'methodValidationPostProcessor': no URL paths identified
  8458. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration': no URL paths identified
  8459. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'error': no URL paths identified
  8460. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'beanNameViewResolver': no URL paths identified
  8461. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration': no URL paths identified
  8462. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'conventionErrorViewResolver': no URL paths identified
  8463. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration': no URL paths identified
  8464. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'errorAttributes': no URL paths identified
  8465. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'basicErrorController': no URL paths identified
  8466. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'errorPageCustomizer': no URL paths identified
  8467. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'preserveErrorControllerTargetClassPostProcessor': no URL paths identified
  8468. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties': no URL paths identified
  8469. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration': no URL paths identified
  8470. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'faviconHandlerMapping': no URL paths identified
  8471. 2019-12-01 20:56:36.516 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'faviconRequestHandler': no URL paths identified
  8472. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration': no URL paths identified
  8473. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'requestMappingHandlerAdapter': no URL paths identified
  8474. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'requestMappingHandlerMapping': no URL paths identified
  8475. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcConversionService': no URL paths identified
  8476. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcValidator': no URL paths identified
  8477. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcContentNegotiationManager': no URL paths identified
  8478. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcPathMatcher': no URL paths identified
  8479. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcUrlPathHelper': no URL paths identified
  8480. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'viewControllerHandlerMapping': no URL paths identified
  8481. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'beanNameHandlerMapping': no URL paths identified
  8482. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'resourceHandlerMapping': no URL paths identified
  8483. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcResourceUrlProvider': no URL paths identified
  8484. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'defaultServletHandlerMapping': no URL paths identified
  8485. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcUriComponentsContributor': no URL paths identified
  8486. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'httpRequestHandlerAdapter': no URL paths identified
  8487. 2019-12-01 20:56:36.517 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'simpleControllerHandlerAdapter': no URL paths identified
  8488. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'handlerExceptionResolver': no URL paths identified
  8489. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcViewResolver': no URL paths identified
  8490. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mvcHandlerMappingIntrospector': no URL paths identified
  8491. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter': no URL paths identified
  8492. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'defaultViewResolver': no URL paths identified
  8493. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'viewResolver': no URL paths identified
  8494. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'welcomePageHandlerMapping': no URL paths identified
  8495. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'requestContextFilter': no URL paths identified
  8496. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration': no URL paths identified
  8497. 2019-12-01 20:56:36.518 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'hiddenHttpMethodFilter': no URL paths identified
  8498. 2019-12-01 20:56:36.519 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'httpPutFormContentFilter': no URL paths identified
  8499. 2019-12-01 20:56:36.519 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration': no URL paths identified
  8500. 2019-12-01 20:56:36.519 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration': no URL paths identified
  8501. 2019-12-01 20:56:36.519 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'gsonBuilder': no URL paths identified
  8502. 2019-12-01 20:56:36.519 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'gson': no URL paths identified
  8503. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'standardGsonBuilderCustomizer': no URL paths identified
  8504. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties': no URL paths identified
  8505. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration': no URL paths identified
  8506. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'standardJacksonObjectMapperBuilderCustomizer': no URL paths identified
  8507. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties': no URL paths identified
  8508. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration': no URL paths identified
  8509. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'jacksonObjectMapperBuilder': no URL paths identified
  8510. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration': no URL paths identified
  8511. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'parameterNamesModule': no URL paths identified
  8512. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration': no URL paths identified
  8513. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'jacksonObjectMapper': no URL paths identified
  8514. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration': no URL paths identified
  8515. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'jsonComponentModule': no URL paths identified
  8516. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration': no URL paths identified
  8517. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'stringHttpMessageConverter': no URL paths identified
  8518. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties': no URL paths identified
  8519. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration': no URL paths identified
  8520. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'mappingJackson2HttpMessageConverter': no URL paths identified
  8521. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration': no URL paths identified
  8522. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration': no URL paths identified
  8523. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration': no URL paths identified
  8524. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'messageConverters': no URL paths identified
  8525. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration': no URL paths identified
  8526. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'jacksonCodecCustomizer': no URL paths identified
  8527. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration': no URL paths identified
  8528. 2019-12-01 20:56:36.520 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration': no URL paths identified
  8529. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties': no URL paths identified
  8530. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration': no URL paths identified
  8531. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'restTemplateBuilder': no URL paths identified
  8532. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration': no URL paths identified
  8533. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'tomcatWebServerFactoryCustomizer': no URL paths identified
  8534. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration': no URL paths identified
  8535. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration': no URL paths identified
  8536. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'characterEncodingFilter': no URL paths identified
  8537. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'localeCharsetMappingsCustomizer': no URL paths identified
  8538. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration': no URL paths identified
  8539. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'multipartConfigElement': no URL paths identified
  8540. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'multipartResolver': no URL paths identified
  8541. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties': no URL paths identified
  8542. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'autoConfigurationReport': no URL paths identified
  8543. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.context.ContextIdApplicationContextInitializer$ContextId': no URL paths identified
  8544. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.test.context.filter.TestTypeExcludeFilter': no URL paths identified
  8545. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer$PropertyMappingCheckBeanPostProcessor': no URL paths identified
  8546. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'springApplicationArguments': no URL paths identified
  8547. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'springBootBanner': no URL paths identified
  8548. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'springBootLoggingSystem': no URL paths identified
  8549. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'environment': no URL paths identified
  8550. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'systemProperties': no URL paths identified
  8551. 2019-12-01 20:56:36.521 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'systemEnvironment': no URL paths identified
  8552. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'servletContext': no URL paths identified
  8553. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'contextParameters': no URL paths identified
  8554. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'contextAttributes': no URL paths identified
  8555. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry': no URL paths identified
  8556. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.test.mock.mockito.MockitoBeans': no URL paths identified
  8557. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'messageSource': no URL paths identified
  8558. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'applicationEventMulticaster': no URL paths identified
  8559. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'beanNameHandlerMapping'
  8560. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'resourceHandlerMapping'
  8561. 2019-12-01 20:56:36.522 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'resourceHandlerMapping'
  8562. 2019-12-01 20:56:36.523 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8563. 2019-12-01 20:56:36.524 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8564. 2019-12-01 20:56:36.525 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcUrlPathHelper'
  8565. 2019-12-01 20:56:36.531 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcPathMatcher'
  8566. 2019-12-01 20:56:36.532 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcUrlPathHelper'
  8567. 2019-12-01 20:56:36.532 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'resourceHandlerMapping' to allow for resolving potential circular references
  8568. 2019-12-01 20:56:36.533 INFO 1725 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8569. 2019-12-01 20:56:36.533 INFO 1725 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8570. 2019-12-01 20:56:36.534 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'resourceHandlerMapping'
  8571. 2019-12-01 20:56:36.534 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcResourceUrlProvider'
  8572. 2019-12-01 20:56:36.534 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultServletHandlerMapping'
  8573. 2019-12-01 20:56:36.534 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'defaultServletHandlerMapping'
  8574. 2019-12-01 20:56:36.534 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8575. 2019-12-01 20:56:36.535 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'defaultServletHandlerMapping' to allow for resolving potential circular references
  8576. 2019-12-01 20:56:36.536 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'defaultServletHandlerMapping'
  8577. 2019-12-01 20:56:36.536 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUriComponentsContributor'
  8578. 2019-12-01 20:56:36.536 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcUriComponentsContributor'
  8579. 2019-12-01 20:56:36.537 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8580. 2019-12-01 20:56:36.537 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'requestMappingHandlerAdapter'
  8581. 2019-12-01 20:56:36.538 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcConversionService'
  8582. 2019-12-01 20:56:36.551 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcUriComponentsContributor' to allow for resolving potential circular references
  8583. 2019-12-01 20:56:36.554 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcUriComponentsContributor'
  8584. 2019-12-01 20:56:36.554 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'httpRequestHandlerAdapter'
  8585. 2019-12-01 20:56:36.554 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'httpRequestHandlerAdapter'
  8586. 2019-12-01 20:56:36.554 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8587. 2019-12-01 20:56:36.555 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'httpRequestHandlerAdapter' to allow for resolving potential circular references
  8588. 2019-12-01 20:56:36.559 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'httpRequestHandlerAdapter'
  8589. 2019-12-01 20:56:36.559 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'simpleControllerHandlerAdapter'
  8590. 2019-12-01 20:56:36.559 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'simpleControllerHandlerAdapter'
  8591. 2019-12-01 20:56:36.560 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8592. 2019-12-01 20:56:36.560 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'simpleControllerHandlerAdapter' to allow for resolving potential circular references
  8593. 2019-12-01 20:56:36.567 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'simpleControllerHandlerAdapter'
  8594. 2019-12-01 20:56:36.567 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'handlerExceptionResolver'
  8595. 2019-12-01 20:56:36.567 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'handlerExceptionResolver'
  8596. 2019-12-01 20:56:36.567 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8597. 2019-12-01 20:56:36.572 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8598. 2019-12-01 20:56:36.572 DEBUG 1725 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : Looking for exception mappings: org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  8599. 2019-12-01 20:56:36.580 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'handlerExceptionResolver' to allow for resolving potential circular references
  8600. 2019-12-01 20:56:36.585 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'handlerExceptionResolver'
  8601. 2019-12-01 20:56:36.585 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcViewResolver'
  8602. 2019-12-01 20:56:36.585 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'mvcViewResolver'
  8603. 2019-12-01 20:56:36.585 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
  8604. 2019-12-01 20:56:36.590 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8605. 2019-12-01 20:56:36.593 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'mvcViewResolver' to allow for resolving potential circular references
  8606. 2019-12-01 20:56:36.599 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'mvcViewResolver'
  8607. 2019-12-01 20:56:36.599 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'mvcViewResolver'
  8608. 2019-12-01 20:56:36.599 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8609. 2019-12-01 20:56:36.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultViewResolver'
  8610. 2019-12-01 20:56:36.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'defaultViewResolver'
  8611. 2019-12-01 20:56:36.600 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8612. 2019-12-01 20:56:36.620 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'defaultViewResolver' to allow for resolving potential circular references
  8613. 2019-12-01 20:56:36.636 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'defaultViewResolver'
  8614. 2019-12-01 20:56:36.637 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewResolver'
  8615. 2019-12-01 20:56:36.637 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'viewResolver'
  8616. 2019-12-01 20:56:36.637 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8617. 2019-12-01 20:56:36.638 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24'
  8618. 2019-12-01 20:56:36.640 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcContentNegotiationManager'
  8619. 2019-12-01 20:56:36.642 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'viewResolver' to allow for resolving potential circular references
  8620. 2019-12-01 20:56:36.658 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'beanNameViewResolver'
  8621. 2019-12-01 20:56:36.658 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcViewResolver'
  8622. 2019-12-01 20:56:36.658 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'defaultViewResolver'
  8623. 2019-12-01 20:56:36.658 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning eagerly cached instance of singleton bean 'viewResolver' that is not fully initialized yet - a consequence of a circular reference
  8624. 2019-12-01 20:56:36.665 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'viewResolver'
  8625. 2019-12-01 20:56:36.665 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'viewResolver'
  8626. 2019-12-01 20:56:36.666 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'welcomePageHandlerMapping'
  8627. 2019-12-01 20:56:36.666 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'welcomePageHandlerMapping'
  8628. 2019-12-01 20:56:36.666 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
  8629. 2019-12-01 20:56:36.666 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.web.context.support.GenericWebApplicationContext@7139992f'
  8630. 2019-12-01 20:56:36.671 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.template.provider.cache' in any property source
  8631. 2019-12-01 20:56:36.675 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'welcomePageHandlerMapping' to allow for resolving potential circular references
  8632. 2019-12-01 20:56:36.685 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'welcomePageHandlerMapping'
  8633. 2019-12-01 20:56:36.685 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestContextFilter'
  8634. 2019-12-01 20:56:36.685 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'requestContextFilter'
  8635. 2019-12-01 20:56:36.688 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'requestContextFilter' to allow for resolving potential circular references
  8636. 2019-12-01 20:56:36.696 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'requestContextFilter'
  8637. 2019-12-01 20:56:36.698 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'requestContextFilter'
  8638. 2019-12-01 20:56:36.703 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  8639. 2019-12-01 20:56:36.703 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  8640. 2019-12-01 20:56:36.704 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' to allow for resolving potential circular references
  8641. 2019-12-01 20:56:36.710 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  8642. 2019-12-01 20:56:36.710 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'hiddenHttpMethodFilter'
  8643. 2019-12-01 20:56:36.710 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'hiddenHttpMethodFilter'
  8644. 2019-12-01 20:56:36.711 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  8645. 2019-12-01 20:56:36.728 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'hiddenHttpMethodFilter' to allow for resolving potential circular references
  8646. 2019-12-01 20:56:36.764 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'hiddenHttpMethodFilter'
  8647. 2019-12-01 20:56:36.765 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'hiddenHttpMethodFilter'
  8648. 2019-12-01 20:56:36.765 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'httpPutFormContentFilter'
  8649. 2019-12-01 20:56:36.765 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'httpPutFormContentFilter'
  8650. 2019-12-01 20:56:36.765 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
  8651. 2019-12-01 20:56:36.769 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'httpPutFormContentFilter' to allow for resolving potential circular references
  8652. 2019-12-01 20:56:36.789 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'httpPutFormContentFilter'
  8653. 2019-12-01 20:56:36.790 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'httpPutFormContentFilter'
  8654. 2019-12-01 20:56:36.790 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
  8655. 2019-12-01 20:56:36.790 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
  8656. 2019-12-01 20:56:36.792 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' to allow for resolving potential circular references
  8657. 2019-12-01 20:56:36.796 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
  8658. 2019-12-01 20:56:36.796 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8659. 2019-12-01 20:56:36.797 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8660. 2019-12-01 20:56:36.797 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration' to allow for resolving potential circular references
  8661. 2019-12-01 20:56:36.801 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8662. 2019-12-01 20:56:36.801 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'gsonBuilder'
  8663. 2019-12-01 20:56:36.802 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'gsonBuilder'
  8664. 2019-12-01 20:56:36.802 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8665. 2019-12-01 20:56:36.803 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'standardGsonBuilderCustomizer'
  8666. 2019-12-01 20:56:36.803 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'standardGsonBuilderCustomizer'
  8667. 2019-12-01 20:56:36.803 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8668. 2019-12-01 20:56:36.804 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
  8669. 2019-12-01 20:56:36.804 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
  8670. 2019-12-01 20:56:36.805 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties' to allow for resolving potential circular references
  8671. 2019-12-01 20:56:36.808 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
  8672. 2019-12-01 20:56:36.808 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardGsonBuilderCustomizer' via factory method to bean named 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
  8673. 2019-12-01 20:56:36.812 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'standardGsonBuilderCustomizer' to allow for resolving potential circular references
  8674. 2019-12-01 20:56:36.815 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'standardGsonBuilderCustomizer'
  8675. 2019-12-01 20:56:36.816 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer'
  8676. 2019-12-01 20:56:36.837 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'gsonBuilder' to allow for resolving potential circular references
  8677. 2019-12-01 20:56:36.840 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'gsonBuilder'
  8678. 2019-12-01 20:56:36.841 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'gson'
  8679. 2019-12-01 20:56:36.841 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'gson'
  8680. 2019-12-01 20:56:36.841 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
  8681. 2019-12-01 20:56:36.843 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'gsonBuilder'
  8682. 2019-12-01 20:56:36.843 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder'
  8683. 2019-12-01 20:56:36.888 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'gson' to allow for resolving potential circular references
  8684. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'gson'
  8685. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'standardGsonBuilderCustomizer'
  8686. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
  8687. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
  8688. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
  8689. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
  8690. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
  8691. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'jacksonObjectMapperBuilder'
  8692. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
  8693. 2019-12-01 20:56:36.891 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'parameterNamesModule'
  8694. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
  8695. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'jacksonObjectMapper'
  8696. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
  8697. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'jsonComponentModule'
  8698. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
  8699. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'stringHttpMessageConverter'
  8700. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties'
  8701. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
  8702. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mappingJackson2HttpMessageConverter'
  8703. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
  8704. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
  8705. 2019-12-01 20:56:36.892 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' to allow for resolving potential circular references
  8706. 2019-12-01 20:56:36.904 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
  8707. 2019-12-01 20:56:36.905 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
  8708. 2019-12-01 20:56:36.905 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
  8709. 2019-12-01 20:56:36.906 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration' to allow for resolving potential circular references
  8710. 2019-12-01 20:56:36.909 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
  8711. 2019-12-01 20:56:36.909 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
  8712. 2019-12-01 20:56:36.910 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'messageConverters'
  8713. 2019-12-01 20:56:36.910 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
  8714. 2019-12-01 20:56:36.911 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
  8715. 2019-12-01 20:56:36.912 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' to allow for resolving potential circular references
  8716. 2019-12-01 20:56:36.916 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
  8717. 2019-12-01 20:56:36.916 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonCodecCustomizer'
  8718. 2019-12-01 20:56:36.916 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'jacksonCodecCustomizer'
  8719. 2019-12-01 20:56:36.916 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
  8720. 2019-12-01 20:56:36.916 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'jacksonObjectMapper'
  8721. 2019-12-01 20:56:36.917 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper'
  8722. 2019-12-01 20:56:36.921 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'jacksonCodecCustomizer' to allow for resolving potential circular references
  8723. 2019-12-01 20:56:36.923 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'jacksonCodecCustomizer'
  8724. 2019-12-01 20:56:36.923 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
  8725. 2019-12-01 20:56:36.923 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
  8726. 2019-12-01 20:56:36.924 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' to allow for resolving potential circular references
  8727. 2019-12-01 20:56:36.930 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
  8728. 2019-12-01 20:56:36.930 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
  8729. 2019-12-01 20:56:36.930 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
  8730. 2019-12-01 20:56:36.931 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$4dbb53f8] - unable to determine constructor/method parameter names
  8731. 2019-12-01 20:56:36.932 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
  8732. 2019-12-01 20:56:36.932 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
  8733. 2019-12-01 20:56:36.933 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' to allow for resolving potential circular references
  8734. 2019-12-01 20:56:36.936 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
  8735. 2019-12-01 20:56:36.936 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
  8736. 2019-12-01 20:56:36.937 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' to allow for resolving potential circular references
  8737. 2019-12-01 20:56:36.942 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
  8738. 2019-12-01 20:56:36.944 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
  8739. 2019-12-01 20:56:36.944 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
  8740. 2019-12-01 20:56:36.944 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
  8741. 2019-12-01 20:56:36.944 DEBUG 1725 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$acd74060] - unable to determine constructor/method parameter names
  8742. 2019-12-01 20:56:36.945 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' to allow for resolving potential circular references
  8743. 2019-12-01 20:56:36.950 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
  8744. 2019-12-01 20:56:36.950 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'restTemplateBuilder'
  8745. 2019-12-01 20:56:36.951 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'restTemplateBuilder'
  8746. 2019-12-01 20:56:36.951 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
  8747. 2019-12-01 20:56:36.956 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'messageConverters'
  8748. 2019-12-01 20:56:36.962 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'restTemplateBuilder' to allow for resolving potential circular references
  8749. 2019-12-01 20:56:36.965 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'restTemplateBuilder'
  8750. 2019-12-01 20:56:36.966 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
  8751. 2019-12-01 20:56:36.967 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'tomcatWebServerFactoryCustomizer'
  8752. 2019-12-01 20:56:36.967 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
  8753. 2019-12-01 20:56:36.967 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
  8754. 2019-12-01 20:56:36.968 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' to allow for resolving potential circular references
  8755. 2019-12-01 20:56:36.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
  8756. 2019-12-01 20:56:36.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  8757. 2019-12-01 20:56:36.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'characterEncodingFilter'
  8758. 2019-12-01 20:56:36.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'characterEncodingFilter'
  8759. 2019-12-01 20:56:36.971 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
  8760. 2019-12-01 20:56:36.973 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'characterEncodingFilter' to allow for resolving potential circular references
  8761. 2019-12-01 20:56:36.983 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Invoking afterPropertiesSet() on bean with name 'characterEncodingFilter'
  8762. 2019-12-01 20:56:36.983 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'characterEncodingFilter'
  8763. 2019-12-01 20:56:36.984 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'localeCharsetMappingsCustomizer'
  8764. 2019-12-01 20:56:36.984 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  8765. 2019-12-01 20:56:36.985 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'multipartConfigElement'
  8766. 2019-12-01 20:56:36.985 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartResolver'
  8767. 2019-12-01 20:56:36.986 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'multipartResolver'
  8768. 2019-12-01 20:56:36.986 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
  8769. 2019-12-01 20:56:36.988 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Eagerly caching bean 'multipartResolver' to allow for resolving potential circular references
  8770. 2019-12-01 20:56:36.991 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'multipartResolver'
  8771. 2019-12-01 20:56:36.991 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
  8772. 2019-12-01 20:56:36.992 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
  8773. 2019-12-01 20:56:37.026 DEBUG 1725 --- [main] o.s.w.c.s.GenericWebApplicationContext : Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@7c29adc8]
  8774. 2019-12-01 20:56:37.027 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'lifecycleProcessor'
  8775. 2019-12-01 20:56:37.029 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
  8776. 2019-12-01 20:56:37.029 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcResourceUrlProvider'
  8777. 2019-12-01 20:56:37.049 DEBUG 1725 --- [main] ConditionEvaluationReportLoggingListener :
  8778. ============================
  8779. CONDITIONS EVALUATION REPORT
  8780. ============================
  8781. Positive matches:
  8782. -----------------
  8783. CodecsAutoConfiguration matched:
  8784. - @ConditionalOnClass found required class 'org.springframework.http.codec.CodecConfigurer'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8785. CodecsAutoConfiguration.JacksonCodecConfiguration matched:
  8786. - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8787. CodecsAutoConfiguration.JacksonCodecConfiguration#jacksonCodecCustomizer matched:
  8788. - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
  8789. DispatcherServletAutoConfiguration matched:
  8790. - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8791. - found 'session' scope (OnWebApplicationCondition)
  8792. DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
  8793. - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8794. - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
  8795. DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
  8796. - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8797. - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
  8798. DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
  8799. - @ConditionalOnBean (names: dispatcherServlet; types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
  8800. EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
  8801. - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
  8802. EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
  8803. - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8804. ErrorMvcAutoConfiguration matched:
  8805. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8806. - found 'session' scope (OnWebApplicationCondition)
  8807. ErrorMvcAutoConfiguration#basicErrorController matched:
  8808. - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
  8809. ErrorMvcAutoConfiguration#errorAttributes matched:
  8810. - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
  8811. ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
  8812. - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.DefaultErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8813. ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
  8814. - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
  8815. - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
  8816. ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
  8817. - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8818. ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
  8819. - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8820. GenericCacheConfiguration matched:
  8821. - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
  8822. GsonAutoConfiguration matched:
  8823. - @ConditionalOnClass found required class 'com.google.gson.Gson'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8824. GsonAutoConfiguration#gson matched:
  8825. - @ConditionalOnMissingBean (types: com.google.gson.Gson; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8826. GsonAutoConfiguration#gsonBuilder matched:
  8827. - @ConditionalOnMissingBean (types: com.google.gson.GsonBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8828. GsonHttpMessageConvertersConfiguration matched:
  8829. - @ConditionalOnClass found required class 'com.google.gson.Gson'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8830. HttpEncodingAutoConfiguration matched:
  8831. - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8832. - found 'session' scope (OnWebApplicationCondition)
  8833. - @ConditionalOnProperty (spring.http.encoding.enabled) matched (OnPropertyCondition)
  8834. HttpEncodingAutoConfiguration#characterEncodingFilter matched:
  8835. - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8836. HttpMessageConvertersAutoConfiguration matched:
  8837. - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8838. HttpMessageConvertersAutoConfiguration#messageConverters matched:
  8839. - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8840. HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
  8841. - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8842. HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
  8843. - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8844. JacksonAutoConfiguration matched:
  8845. - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8846. JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
  8847. - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8848. JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
  8849. - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8850. JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
  8851. - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8852. JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
  8853. - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8854. JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
  8855. - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8856. JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
  8857. - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8858. JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
  8859. - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8860. JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
  8861. - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8862. - @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
  8863. - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
  8864. JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
  8865. - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8866. MultipartAutoConfiguration matched:
  8867. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8868. - found 'session' scope (OnWebApplicationCondition)
  8869. - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
  8870. MultipartAutoConfiguration#multipartConfigElement matched:
  8871. - @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8872. MultipartAutoConfiguration#multipartResolver matched:
  8873. - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8874. NoOpCacheConfiguration matched:
  8875. - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
  8876. PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
  8877. - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
  8878. RestTemplateAutoConfiguration matched:
  8879. - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8880. RestTemplateAutoConfiguration#restTemplateBuilder matched:
  8881. - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8882. ServletWebServerFactoryAutoConfiguration matched:
  8883. - @ConditionalOnClass found required class 'javax.servlet.ServletRequest'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8884. - found 'session' scope (OnWebApplicationCondition)
  8885. ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
  8886. - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8887. ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
  8888. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8889. - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
  8890. SimpleCacheConfiguration matched:
  8891. - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
  8892. ValidationAutoConfiguration matched:
  8893. - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8894. - @ConditionalOnResource found location classpath:META-INF/services/javax.validation.spi.ValidationProvider (OnResourceCondition)
  8895. ValidationAutoConfiguration#defaultValidator matched:
  8896. - @ConditionalOnMissingBean (types: javax.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8897. ValidationAutoConfiguration#methodValidationPostProcessor matched:
  8898. - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8899. WebMvcAutoConfiguration matched:
  8900. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8901. - found 'session' scope (OnWebApplicationCondition)
  8902. - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8903. WebMvcAutoConfiguration#hiddenHttpMethodFilter matched:
  8904. - @ConditionalOnMissingBean (types: org.springframework.web.filter.HiddenHttpMethodFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8905. WebMvcAutoConfiguration#httpPutFormContentFilter matched:
  8906. - @ConditionalOnProperty (spring.mvc.formcontent.putfilter.enabled) matched (OnPropertyCondition)
  8907. - @ConditionalOnMissingBean (types: org.springframework.web.filter.HttpPutFormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8908. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
  8909. - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8910. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
  8911. - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8912. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
  8913. - @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)
  8914. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter.FaviconConfiguration matched:
  8915. - @ConditionalOnProperty (spring.mvc.favicon.enabled) matched (OnPropertyCondition)
  8916. WebSocketServletAutoConfiguration matched:
  8917. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8918. - found 'session' scope (OnWebApplicationCondition)
  8919. WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
  8920. - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8921. WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
  8922. - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
  8923. Negative matches:
  8924. -----------------
  8925. ActiveMQAutoConfiguration:
  8926. Did not match:
  8927. - @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.ActiveMQConnectionFactory' (OnClassCondition)
  8928. AopAutoConfiguration:
  8929. Did not match:
  8930. - @ConditionalOnClass did not find required classes 'org.aspectj.lang.annotation.Aspect', 'org.aspectj.lang.reflect.Advice', 'org.aspectj.weaver.AnnotatedElement' (OnClassCondition)
  8931. ArtemisAutoConfiguration:
  8932. Did not match:
  8933. - @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory' (OnClassCondition)
  8934. BatchAutoConfiguration:
  8935. Did not match:
  8936. - @ConditionalOnClass did not find required classes 'org.springframework.batch.core.launch.JobLauncher', 'org.springframework.jdbc.core.JdbcOperations' (OnClassCondition)
  8937. CacheAutoConfiguration:
  8938. Did not match:
  8939. - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition)
  8940. Matched:
  8941. - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  8942. CacheAutoConfiguration.CacheManagerJpaDependencyConfiguration:
  8943. Did not match:
  8944. - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
  8945. - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
  8946. CaffeineCacheConfiguration:
  8947. Did not match:
  8948. - @ConditionalOnClass did not find required classes 'com.github.benmanes.caffeine.cache.Caffeine', 'org.springframework.cache.caffeine.CaffeineCacheManager' (OnClassCondition)
  8949. CassandraAutoConfiguration:
  8950. Did not match:
  8951. - @ConditionalOnClass did not find required class 'com.datastax.driver.core.Cluster' (OnClassCondition)
  8952. CassandraDataAutoConfiguration:
  8953. Did not match:
  8954. - @ConditionalOnClass did not find required classes 'com.datastax.driver.core.Cluster', 'org.springframework.data.cassandra.core.CassandraAdminOperations' (OnClassCondition)
  8955. CassandraReactiveDataAutoConfiguration:
  8956. Did not match:
  8957. - @ConditionalOnClass did not find required classes 'com.datastax.driver.core.Cluster', 'org.springframework.data.cassandra.core.ReactiveCassandraTemplate', 'reactor.core.publisher.Flux' (OnClassCondition)
  8958. CassandraReactiveRepositoriesAutoConfiguration:
  8959. Did not match:
  8960. - @ConditionalOnClass did not find required classes 'org.springframework.data.cassandra.ReactiveSession', 'org.springframework.data.cassandra.repository.ReactiveCassandraRepository' (OnClassCondition)
  8961. CassandraRepositoriesAutoConfiguration:
  8962. Did not match:
  8963. - @ConditionalOnClass did not find required classes 'com.datastax.driver.core.Session', 'org.springframework.data.cassandra.repository.CassandraRepository' (OnClassCondition)
  8964. CloudAutoConfiguration:
  8965. Did not match:
  8966. - @ConditionalOnClass did not find required class 'org.springframework.cloud.config.java.CloudScanConfiguration' (OnClassCondition)
  8967. CouchbaseAutoConfiguration:
  8968. Did not match:
  8969. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.CouchbaseBucket', 'com.couchbase.client.java.Cluster' (OnClassCondition)
  8970. CouchbaseCacheConfiguration:
  8971. Did not match:
  8972. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'com.couchbase.client.spring.cache.CouchbaseCacheManager' (OnClassCondition)
  8973. CouchbaseDataAutoConfiguration:
  8974. Did not match:
  8975. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.CouchbaseRepository' (OnClassCondition)
  8976. CouchbaseReactiveDataAutoConfiguration:
  8977. Did not match:
  8978. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.ReactiveCouchbaseRepository', 'reactor.core.publisher.Flux' (OnClassCondition)
  8979. CouchbaseReactiveRepositoriesAutoConfiguration:
  8980. Did not match:
  8981. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.ReactiveCouchbaseRepository', 'reactor.core.publisher.Flux' (OnClassCondition)
  8982. CouchbaseRepositoriesAutoConfiguration:
  8983. Did not match:
  8984. - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'org.springframework.data.couchbase.repository.CouchbaseRepository' (OnClassCondition)
  8985. DataSourceAutoConfiguration:
  8986. Did not match:
  8987. - @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
  8988. DataSourceTransactionManagerAutoConfiguration:
  8989. Did not match:
  8990. - @ConditionalOnClass did not find required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
  8991. DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
  8992. Did not match:
  8993. - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
  8994. EhCacheCacheConfiguration:
  8995. Did not match:
  8996. - @ConditionalOnClass did not find required classes 'net.sf.ehcache.Cache', 'org.springframework.cache.ehcache.EhCacheCacheManager' (OnClassCondition)
  8997. ElasticsearchAutoConfiguration:
  8998. Did not match:
  8999. - @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.client.TransportClientFactoryBean' (OnClassCondition)
  9000. ElasticsearchDataAutoConfiguration:
  9001. Did not match:
  9002. - @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.core.ElasticsearchTemplate' (OnClassCondition)
  9003. ElasticsearchRepositoriesAutoConfiguration:
  9004. Did not match:
  9005. - @ConditionalOnClass did not find required classes 'org.elasticsearch.client.Client', 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition)
  9006. EmbeddedLdapAutoConfiguration:
  9007. Did not match:
  9008. - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
  9009. EmbeddedMongoAutoConfiguration:
  9010. Did not match:
  9011. - @ConditionalOnClass did not find required classes 'com.mongodb.MongoClient', 'de.flapdoodle.embed.mongo.MongodStarter' (OnClassCondition)
  9012. EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
  9013. Did not match:
  9014. - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
  9015. EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
  9016. Did not match:
  9017. - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
  9018. ErrorWebFluxAutoConfiguration:
  9019. Did not match:
  9020. - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
  9021. FlywayAutoConfiguration:
  9022. Did not match:
  9023. - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
  9024. FreeMarkerAutoConfiguration:
  9025. Did not match:
  9026. - @ConditionalOnClass did not find required classes 'freemarker.template.Configuration', 'org.springframework.ui.freemarker.FreeMarkerConfigurationFactory' (OnClassCondition)
  9027. GroovyTemplateAutoConfiguration:
  9028. Did not match:
  9029. - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
  9030. GsonHttpMessageConvertersConfiguration.GsonHttpMessageConverterConfiguration:
  9031. Did not match:
  9032. - AnyNestedCondition 0 matched 2 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.JacksonJsonbUnavailable NoneNestedConditions 1 matched 1 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JsonbPreferred @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jsonb) did not find property 'spring.http.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.http.converters.preferred-json-mapper=gson) did not find property 'spring.http.converters.preferred-json-mapper' (GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition)
  9033. H2ConsoleAutoConfiguration:
  9034. Did not match:
  9035. - @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition)
  9036. HazelcastAutoConfiguration:
  9037. Did not match:
  9038. - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
  9039. HazelcastCacheConfiguration:
  9040. Did not match:
  9041. - @ConditionalOnClass did not find required classes 'com.hazelcast.core.HazelcastInstance', 'com.hazelcast.spring.cache.HazelcastCacheManager' (OnClassCondition)
  9042. HazelcastJpaDependencyAutoConfiguration:
  9043. Did not match:
  9044. - @ConditionalOnClass did not find required classes 'com.hazelcast.core.HazelcastInstance', 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
  9045. HibernateJpaAutoConfiguration:
  9046. Did not match:
  9047. - @ConditionalOnClass did not find required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'javax.persistence.EntityManager' (OnClassCondition)
  9048. HttpHandlerAutoConfiguration:
  9049. Did not match:
  9050. - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
  9051. HypermediaAutoConfiguration:
  9052. Did not match:
  9053. - @ConditionalOnClass did not find required classes 'org.springframework.hateoas.Resource', 'org.springframework.plugin.core.Plugin' (OnClassCondition)
  9054. InfinispanCacheConfiguration:
  9055. Did not match:
  9056. - @ConditionalOnClass did not find required class 'org.infinispan.spring.provider.SpringEmbeddedCacheManager' (OnClassCondition)
  9057. InfluxDbAutoConfiguration:
  9058. Did not match:
  9059. - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
  9060. IntegrationAutoConfiguration:
  9061. Did not match:
  9062. - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
  9063. JCacheCacheConfiguration:
  9064. Did not match:
  9065. - @ConditionalOnClass did not find required classes 'javax.cache.Caching', 'org.springframework.cache.jcache.JCacheCacheManager' (OnClassCondition)
  9066. JacksonAutoConfiguration.JodaDateTimeJacksonConfiguration:
  9067. Did not match:
  9068. - @ConditionalOnClass did not find required classes 'com.fasterxml.jackson.datatype.joda.ser.DateTimeSerializer', 'com.fasterxml.jackson.datatype.joda.cfg.JacksonJodaDateFormat' (OnClassCondition)
  9069. JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
  9070. Did not match:
  9071. - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
  9072. JdbcTemplateAutoConfiguration:
  9073. Did not match:
  9074. - @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
  9075. JerseyAutoConfiguration:
  9076. Did not match:
  9077. - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
  9078. JestAutoConfiguration:
  9079. Did not match:
  9080. - @ConditionalOnClass did not find required class 'io.searchbox.client.JestClient' (OnClassCondition)
  9081. JmsAutoConfiguration:
  9082. Did not match:
  9083. - @ConditionalOnClass did not find required classes 'javax.jms.Message', 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
  9084. JmxAutoConfiguration:
  9085. Did not match:
  9086. - @ConditionalOnProperty (spring.jmx.enabled=true) found different value in property 'enabled' (OnPropertyCondition)
  9087. Matched:
  9088. - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  9089. JndiConnectionFactoryAutoConfiguration:
  9090. Did not match:
  9091. - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
  9092. JndiDataSourceAutoConfiguration:
  9093. Did not match:
  9094. - @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
  9095. JooqAutoConfiguration:
  9096. Did not match:
  9097. - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
  9098. JpaRepositoriesAutoConfiguration:
  9099. Did not match:
  9100. - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
  9101. JsonbAutoConfiguration:
  9102. Did not match:
  9103. - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
  9104. JsonbHttpMessageConvertersConfiguration:
  9105. Did not match:
  9106. - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition)
  9107. JtaAutoConfiguration:
  9108. Did not match:
  9109. - @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition)
  9110. KafkaAutoConfiguration:
  9111. Did not match:
  9112. - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
  9113. LdapAutoConfiguration:
  9114. Did not match:
  9115. - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
  9116. LdapDataAutoConfiguration:
  9117. Did not match:
  9118. - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
  9119. LdapRepositoriesAutoConfiguration:
  9120. Did not match:
  9121. - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
  9122. LiquibaseAutoConfiguration:
  9123. Did not match:
  9124. - @ConditionalOnClass did not find required classes 'liquibase.integration.spring.SpringLiquibase', 'liquibase.change.DatabaseChange' (OnClassCondition)
  9125. MailSenderAutoConfiguration:
  9126. Did not match:
  9127. - @ConditionalOnClass did not find required classes 'javax.mail.internet.MimeMessage', 'org.springframework.mail.MailSender' (OnClassCondition)
  9128. MailSenderValidatorAutoConfiguration:
  9129. Did not match:
  9130. - @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition)
  9131. MessageSourceAutoConfiguration:
  9132. Did not match:
  9133. - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
  9134. MongoAutoConfiguration:
  9135. Did not match:
  9136. - @ConditionalOnClass did not find required class 'com.mongodb.MongoClient' (OnClassCondition)
  9137. MongoDataAutoConfiguration:
  9138. Did not match:
  9139. - @ConditionalOnClass did not find required classes 'com.mongodb.MongoClient', 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition)
  9140. MongoReactiveAutoConfiguration:
  9141. Did not match:
  9142. - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
  9143. MongoReactiveDataAutoConfiguration:
  9144. Did not match:
  9145. - @ConditionalOnClass did not find required classes 'com.mongodb.reactivestreams.client.MongoClient', 'org.springframework.data.mongodb.core.ReactiveMongoTemplate' (OnClassCondition)
  9146. MongoReactiveRepositoriesAutoConfiguration:
  9147. Did not match:
  9148. - @ConditionalOnClass did not find required classes 'com.mongodb.reactivestreams.client.MongoClient', 'org.springframework.data.mongodb.repository.ReactiveMongoRepository' (OnClassCondition)
  9149. MongoRepositoriesAutoConfiguration:
  9150. Did not match:
  9151. - @ConditionalOnClass did not find required classes 'com.mongodb.MongoClient', 'org.springframework.data.mongodb.repository.MongoRepository' (OnClassCondition)
  9152. MustacheAutoConfiguration:
  9153. Did not match:
  9154. - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
  9155. Neo4jDataAutoConfiguration:
  9156. Did not match:
  9157. - @ConditionalOnClass did not find required classes 'org.neo4j.ogm.session.SessionFactory', 'org.springframework.data.neo4j.transaction.Neo4jTransactionManager', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
  9158. Neo4jRepositoriesAutoConfiguration:
  9159. Did not match:
  9160. - @ConditionalOnClass did not find required classes 'org.neo4j.ogm.session.Neo4jSession', 'org.springframework.data.neo4j.repository.Neo4jRepository' (OnClassCondition)
  9161. OAuth2ClientAutoConfiguration:
  9162. Did not match:
  9163. - @ConditionalOnClass did not find required classes 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity', 'org.springframework.security.oauth2.client.registration.ClientRegistration' (OnClassCondition)
  9164. PersistenceExceptionTranslationAutoConfiguration:
  9165. Did not match:
  9166. - @ConditionalOnClass did not find required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
  9167. ProjectInfoAutoConfiguration#buildProperties:
  9168. Did not match:
  9169. - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
  9170. ProjectInfoAutoConfiguration#gitProperties:
  9171. Did not match:
  9172. - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
  9173. QuartzAutoConfiguration:
  9174. Did not match:
  9175. - @ConditionalOnClass did not find required classes 'org.quartz.Scheduler', 'org.springframework.scheduling.quartz.SchedulerFactoryBean', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
  9176. RabbitAutoConfiguration:
  9177. Did not match:
  9178. - @ConditionalOnClass did not find required classes 'org.springframework.amqp.rabbit.core.RabbitTemplate', 'com.rabbitmq.client.Channel' (OnClassCondition)
  9179. ReactiveSecurityAutoConfiguration:
  9180. Did not match:
  9181. - @ConditionalOnClass did not find required classes 'reactor.core.publisher.Flux', 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity', 'org.springframework.security.web.server.WebFilterChainProxy' (OnClassCondition)
  9182. ReactiveUserDetailsServiceAutoConfiguration:
  9183. Did not match:
  9184. - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
  9185. ReactiveWebServerFactoryAutoConfiguration:
  9186. Did not match:
  9187. - not a reactive web application (OnWebApplicationCondition)
  9188. Matched:
  9189. - @ConditionalOnClass found required class 'org.springframework.http.ReactiveHttpInputMessage'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  9190. ReactorCoreAutoConfiguration:
  9191. Did not match:
  9192. - @ConditionalOnClass did not find required classes 'reactor.core.publisher.Mono', 'reactor.core.publisher.Flux' (OnClassCondition)
  9193. RedisAutoConfiguration:
  9194. Did not match:
  9195. - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
  9196. RedisCacheConfiguration:
  9197. Did not match:
  9198. - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
  9199. RedisReactiveAutoConfiguration:
  9200. Did not match:
  9201. - @ConditionalOnClass did not find required classes 'org.springframework.data.redis.connection.ReactiveRedisConnectionFactory', 'org.springframework.data.redis.core.ReactiveRedisTemplate', 'reactor.core.publisher.Flux' (OnClassCondition)
  9202. RedisRepositoriesAutoConfiguration:
  9203. Did not match:
  9204. - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
  9205. RepositoryRestMvcAutoConfiguration:
  9206. Did not match:
  9207. - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
  9208. SecurityAutoConfiguration:
  9209. Did not match:
  9210. - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
  9211. SecurityFilterAutoConfiguration:
  9212. Did not match:
  9213. - @ConditionalOnClass did not find required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
  9214. SecurityRequestMatcherProviderAutoConfiguration:
  9215. Did not match:
  9216. - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition)
  9217. SendGridAutoConfiguration:
  9218. Did not match:
  9219. - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
  9220. ServletWebServerFactoryConfiguration.EmbeddedJetty:
  9221. Did not match:
  9222. - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition)
  9223. ServletWebServerFactoryConfiguration.EmbeddedUndertow:
  9224. Did not match:
  9225. - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
  9226. SessionAutoConfiguration:
  9227. Did not match:
  9228. - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
  9229. SolrAutoConfiguration:
  9230. Did not match:
  9231. - @ConditionalOnClass did not find required classes 'org.apache.solr.client.solrj.impl.HttpSolrClient', 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition)
  9232. SolrRepositoriesAutoConfiguration:
  9233. Did not match:
  9234. - @ConditionalOnClass did not find required classes 'org.apache.solr.client.solrj.SolrClient', 'org.springframework.data.solr.repository.SolrRepository' (OnClassCondition)
  9235. SpringApplicationAdminJmxAutoConfiguration:
  9236. Did not match:
  9237. - @ConditionalOnProperty (spring.application.admin.enabled=true) did not find property 'enabled' (OnPropertyCondition)
  9238. SpringDataWebAutoConfiguration:
  9239. Did not match:
  9240. - @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' (OnClassCondition)
  9241. ThymeleafAutoConfiguration:
  9242. Did not match:
  9243. - @ConditionalOnClass did not find required class 'org.thymeleaf.templatemode.TemplateMode' (OnClassCondition)
  9244. TransactionAutoConfiguration:
  9245. Did not match:
  9246. - @ConditionalOnClass did not find required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
  9247. UserDetailsServiceAutoConfiguration:
  9248. Did not match:
  9249. - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
  9250. WebClientAutoConfiguration:
  9251. Did not match:
  9252. - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
  9253. WebFluxAutoConfiguration:
  9254. Did not match:
  9255. - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
  9256. WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
  9257. Did not match:
  9258. - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
  9259. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
  9260. Did not match:
  9261. - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
  9262. WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#localeResolver:
  9263. Did not match:
  9264. - @ConditionalOnProperty (spring.mvc.locale) did not find property 'locale' (OnPropertyCondition)
  9265. WebServicesAutoConfiguration:
  9266. Did not match:
  9267. - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
  9268. WebSocketMessagingAutoConfiguration:
  9269. Did not match:
  9270. - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
  9271. WebSocketReactiveAutoConfiguration:
  9272. Did not match:
  9273. - not a reactive web application (OnWebApplicationCondition)
  9274. Matched:
  9275. - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
  9276. WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
  9277. Did not match:
  9278. - @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition)
  9279. WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
  9280. Did not match:
  9281. - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
  9282. XADataSourceAutoConfiguration:
  9283. Did not match:
  9284. - @ConditionalOnClass did not find required classes 'javax.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
  9285. Exclusions:
  9286. -----------
  9287. None
  9288. Unconditional classes:
  9289. ----------------------
  9290. org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
  9291. org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
  9292. org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
  9293. 2019-12-01 20:56:37.061 DEBUG 1725 --- [main] o.s.w.s.resource.ResourceUrlProvider : Looking for resource handler mappings
  9294. 2019-12-01 20:56:37.061 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'faviconHandlerMapping'
  9295. 2019-12-01 20:56:37.061 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'resourceHandlerMapping'
  9296. 2019-12-01 20:56:37.062 DEBUG 1725 --- [main] o.s.w.s.resource.ResourceUrlProvider : Found resource handler mapping: URL pattern="/**/favicon.ico", locations=[class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@4f453e63]
  9297. 2019-12-01 20:56:37.062 DEBUG 1725 --- [main] o.s.w.s.resource.ResourceUrlProvider : Found resource handler mapping: URL pattern="/webjars/**", locations=[class path resource [META-INF/resources/webjars/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@7c9bdee9]
  9298. 2019-12-01 20:56:37.062 DEBUG 1725 --- [main] o.s.w.s.resource.ResourceUrlProvider : Found resource handler mapping: URL pattern="/**", locations=[class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@7afbf561]
  9299. 2019-12-01 20:56:37.075 DEBUG 1725 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Could not find key 'spring.liveBeansView.mbeanDomain' in any property source
  9300. 2019-12-01 20:56:37.078 INFO 1725 --- [main] c.w.push.PushApplicationTests : Started PushApplicationTests in 6.222 seconds (JVM running for 7.605)
  9301. 2019-12-01 20:56:37.082 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Storing ApplicationContext in cache under key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9302. 2019-12-01 20:56:37.083 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 0, missCount = 1]
  9303. 2019-12-01 20:56:37.088 DEBUG 1725 --- [main] o.s.t.c.w.ServletTestExecutionListener : Setting up MockHttpServletRequest, MockHttpServletResponse, ServletWebRequest, and RequestContextHolder for test context [DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = cn.wildfirechat.push.PushApplicationTests@3b2f4a93, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true]].
  9304. 2019-12-01 20:56:37.143 DEBUG 1725 --- [main] DependencyInjectionTestExecutionListener : Performing dependency injection for test context [[DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = cn.wildfirechat.push.PushApplicationTests@3b2f4a93, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true]]].
  9305. 2019-12-01 20:56:37.143 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Retrieved ApplicationContext from cache with key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9306. 2019-12-01 20:56:37.143 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 1, missCount = 1]
  9307. 2019-12-01 20:56:37.159 DEBUG 1725 --- [main] tractDirtiesContextTestExecutionListener : Before test method: context [DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = cn.wildfirechat.push.PushApplicationTests@3b2f4a93, testMethod = contextLoads@PushApplicationTests, testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
  9308. 2019-12-01 20:56:37.159 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Retrieved ApplicationContext from cache with key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9309. 2019-12-01 20:56:37.160 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 2, missCount = 1]
  9310. 2019-12-01 20:56:37.299 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoBeans'
  9311. 2019-12-01 20:56:37.301 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Retrieved ApplicationContext from cache with key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9312. 2019-12-01 20:56:37.301 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 3, missCount = 1]
  9313. 2019-12-01 20:56:37.304 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Retrieved ApplicationContext from cache with key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9314. 2019-12-01 20:56:37.305 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 4, missCount = 1]
  9315. 2019-12-01 20:56:37.310 DEBUG 1725 --- [main] c.DefaultCacheAwareContextLoaderDelegate : Retrieved ApplicationContext from cache with key [[WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]]]
  9316. 2019-12-01 20:56:37.310 DEBUG 1725 --- [main] org.springframework.test.context.cache : Spring test ApplicationContext cache statistics: [DefaultContextCache@3d49fd31 size = 1, maxSize = 32, parentContextCount = 0, hitCount = 5, missCount = 1]
  9317. 2019-12-01 20:56:37.311 DEBUG 1725 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoBeans'
  9318. 2019-12-01 20:56:37.311 DEBUG 1725 --- [main] tractDirtiesContextTestExecutionListener : After test method: context [DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = cn.wildfirechat.push.PushApplicationTests@3b2f4a93, testMethod = contextLoads@PushApplicationTests, testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
  9319. 2019-12-01 20:56:37.311 DEBUG 1725 --- [main] o.s.t.c.w.ServletTestExecutionListener : Resetting RequestContextHolder for test context [DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = cn.wildfirechat.push.PushApplicationTests@3b2f4a93, testMethod = contextLoads@PushApplicationTests, testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true]].
  9320. 2019-12-01 20:56:37.313 DEBUG 1725 --- [main] tractDirtiesContextTestExecutionListener : After test class: context [DefaultTestContext@158a8276 testClass = PushApplicationTests, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@3c3d9b6b testClass = PushApplicationTests, locations = '{}', classes = '{class cn.wildfirechat.push.PushApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@491cc5c9, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@462d5aee, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@7403c468, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@4524411f], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.support.DependencyInjectionTestExecutionListener.reinjectDependencies' -> true]], class annotated with @DirtiesContext [false] with mode [null].
  9321. 2019-12-01 20:56:37.373 INFO 1725 --- [Thread-4] o.s.w.c.s.GenericWebApplicationContext : Closing org.springframework.web.context.support.GenericWebApplicationContext@7139992f: startup date [Sun Dec 01 20:56:31 CST 2019]; root of context hierarchy
  9322. 2019-12-01 20:56:37.374 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'lifecycleProcessor'
  9323. 2019-12-01 20:56:37.377 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1787bc24: defining beans [org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor,org.springframework.boot.test.mock.mockito.MockitoPostProcessor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,pushApplication,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,pushController,androidPushServiceImpl,HMSConfig,HMSPush,meiZuConfig,meiZuPush,xiaomiConfig,xiaomiPush,apnsConfig,apnsServer,IOSPushServiceImpl,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,org.springframework.boot.autoconfigure.condition.BeanTypeRegistry,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration,websocketServletWebServerCustomizer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat,tomcatServletWebServerFactory,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,servletWebServerFactoryCustomizer,tomcatServletWebServerFactoryCustomizer,server-org.springframework.boot.autoconfigure.web.ServerProperties,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata,webServerFactoryCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,defaultValidator,methodValidationPostProcessor,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration,faviconHandlerMapping,faviconRequestHandler,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration,requestMappingHandlerAdapter,requestMappingHandlerMapping,mvcConversionService,mvcValidator,mvcContentNegotiationManager,mvcPathMatcher,mvcUrlPathHelper,viewControllerHandlerMapping,beanNameHandlerMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,mvcHandlerMappingIntrospector,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter,defaultViewResolver,viewResolver,welcomePageHandlerMapping,requestContextFilter,org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration,hiddenHttpMethodFilter,httpPutFormContentFilter,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration,gsonBuilder,gson,standardGsonBuilderCustomizer,spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration,parameterNamesModule,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,spring.http.encoding-org.springframework.boot.autoconfigure.http.HttpEncodingProperties,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration,jacksonCodecCustomizer,org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,restTemplateBuilder,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration,tomcatWebServerFactoryCustomizer,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties]; root of factory hierarchy
  9324. 2019-12-01 20:56:37.377 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'characterEncodingFilter'
  9325. 2019-12-01 20:56:37.377 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'httpPutFormContentFilter'
  9326. 2019-12-01 20:56:37.378 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'hiddenHttpMethodFilter'
  9327. 2019-12-01 20:56:37.378 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'requestContextFilter'
  9328. 2019-12-01 20:56:37.378 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'mvcResourceUrlProvider': [requestMappingHandlerMapping]
  9329. 2019-12-01 20:56:37.379 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'mvcValidator': [requestMappingHandlerAdapter]
  9330. 2019-12-01 20:56:37.379 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'requestMappingHandlerAdapter': [mvcUriComponentsContributor]
  9331. 2019-12-01 20:56:37.379 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'mvcValidator'
  9332. 2019-12-01 20:56:37.379 DEBUG 1725 --- [Thread-4] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'defaultValidator'
  9333. 2019-12-01 20:56:37.380 DEBUG 1725 --- [Thread-4] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory': [org.springframework.context.annotation.internalConfigurationAnnotationProcessor]