logback.2025-08-28.log 569 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783
  1. 00:00:28.939 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:05:28.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:10:28.943 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:15:28.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:20:28.946 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:25:28.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:26:17.804 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  8. 00:26:17.805 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  9. 00:26:18.002 [scheduled-thread-3] DEBUG org.hibernate.SQL - insert into control_panel_statistics (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, commission_amount, date, deposit_amount, transfer_amount, withdraw_amount) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  10. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  11. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Thu Aug 28 00:26:18 EEST 2025]
  12. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
  13. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  14. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  15. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  16. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  17. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
  18. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  19. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [5777.0833333333]
  20. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [0E-10]
  21. 00:26:18.003 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [1380.0000000000]
  22. 00:30:28.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 00:35:28.949 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 00:40:28.951 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 00:45:28.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 00:50:28.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 00:55:28.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 01:00:28.956 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 01:05:28.957 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 01:10:28.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 01:15:28.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 01:20:28.962 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 01:25:28.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 01:26:18.008 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  35. 01:26:18.009 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  36. 01:30:28.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 01:35:28.966 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 01:40:28.968 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 01:40:41.181 [http-nio-8500-exec-118] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  40. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  41. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  42. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  43. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  44. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  45. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  46. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  47. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  48. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  49. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  50. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  51. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  52. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  53. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  54. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  55. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  56. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  57. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  58. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  59. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  60. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  61. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  62. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  63. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  64. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  65. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  66. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  67. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  68. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  69. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  70. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  71. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  72. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  73. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  74. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  75. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  76. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  77. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  78. at java.lang.Thread.run(Unknown Source)
  79. 01:40:41.181 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  80. com.crm.rely.backend.exception.LoginException: invalid
  81. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  82. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  83. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  84. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  85. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  86. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  87. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  88. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  89. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  90. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  91. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  92. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  93. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  94. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  95. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  96. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  97. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  98. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  99. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  100. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  101. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  102. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  103. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  104. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  105. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  106. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  107. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  108. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  109. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  110. at java.lang.Thread.run(Unknown Source)
  111. 01:40:41.182 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  112. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  113. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  114. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  115. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  116. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  117. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  118. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  119. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  120. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  121. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  122. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  123. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  124. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  125. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  126. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  127. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  128. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  129. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  130. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  131. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  132. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  133. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  134. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  135. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  136. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  137. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  138. at java.lang.Thread.run(Unknown Source)
  139. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  140. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  141. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  142. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  143. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  144. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  145. ... 25 common frames omitted
  146. 01:45:28.974 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  147. 01:50:28.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  148. 01:55:28.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  149. 02:00:28.978 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  150. 02:03:47.702 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  151. 02:03:47.704 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [942228819@qq.com]
  152. 02:03:47.704 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  153. 02:03:47.706 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  154. 02:03:47.707 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  155. 02:03:47.708 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  156. 02:03:47.708 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  157. 02:03:47.709 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  158. 02:03:47.709 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  159. 02:03:47.711 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  160. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.134.219]
  161. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-12 09:38:12.0]
  162. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  163. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.134.219]
  164. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-12 09:38:48.0]
  165. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  166. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  167. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  168. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  169. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  170. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500803]
  171. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  172. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  173. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  174. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [942228819@qq.com]
  175. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  176. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  177. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  178. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [2111]
  179. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  180. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  181. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [119.126.115.134]
  182. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 02:03:47 EEST 2025]
  183. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  184. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  185. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [张]
  186. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020B]
  187. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  188. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20141]
  189. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  190. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  191. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20147]
  192. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B02]
  193. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  194. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [942228819@qq.com]
  195. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  196. 02:03:47.711 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20147]
  197. 02:05:28.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  198. 02:10:28.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  199. 02:15:28.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  200. 02:20:28.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  201. 02:25:28.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  202. 02:26:18.017 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  203. 02:26:18.018 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  204. 02:30:28.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  205. 02:35:28.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  206. 02:35:58.500 [http-nio-8500-exec-118] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  207. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  208. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  209. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  210. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  211. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  212. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  213. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  214. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  215. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  216. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  217. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  218. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  219. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  220. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  221. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  222. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  223. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  224. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  225. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  226. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  227. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  228. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  229. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  230. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  231. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  232. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  233. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  234. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  235. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  236. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  237. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  238. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  239. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  240. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  241. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  242. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  243. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  244. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  245. at java.lang.Thread.run(Unknown Source)
  246. 02:35:58.500 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  247. com.crm.rely.backend.exception.LoginException: invalid
  248. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  249. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  250. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  251. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  252. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  253. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  254. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  255. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  256. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  257. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  258. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  259. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  260. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  261. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  262. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  263. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  264. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  265. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  266. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  267. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  268. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  269. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  270. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  271. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  272. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  273. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  274. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  275. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  276. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  277. at java.lang.Thread.run(Unknown Source)
  278. 02:35:58.500 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  279. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  280. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  281. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  282. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  283. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  284. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  285. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  286. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  287. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  288. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  289. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  290. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  291. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  292. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  293. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  294. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  295. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  296. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  297. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  298. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  299. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  300. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  301. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  302. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  303. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  304. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  305. at java.lang.Thread.run(Unknown Source)
  306. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  307. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  308. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  309. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  310. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  311. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  312. ... 25 common frames omitted
  313. 02:40:28.990 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  314. 02:45:28.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  315. 02:50:28.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  316. 02:55:28.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  317. 03:00:28.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  318. 03:05:28.998 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  319. 03:10:29.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  320. 03:14:50.792 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  321. 03:14:50.794 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  322. 03:14:50.794 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  323. 03:14:50.796 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  324. 03:14:50.796 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  325. 03:14:50.798 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  326. 03:14:50.798 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  327. 03:14:50.799 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  328. 03:14:50.799 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  329. 03:14:50.801 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  330. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  331. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  332. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  333. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  334. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  335. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  336. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  337. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  338. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  339. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  340. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  341. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  342. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  343. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  344. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  345. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  346. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  347. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  348. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  349. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  350. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  351. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.237]
  352. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:14:50 EEST 2025]
  353. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  354. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  355. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  356. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  357. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  358. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  359. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  360. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  361. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  362. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  363. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  364. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  365. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  366. 03:14:50.801 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  367. 03:15:01.294 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  368. 03:15:13.162 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  369. 03:15:29.001 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  370. 03:20:29.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  371. 03:25:29.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  372. 03:26:18.026 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  373. 03:26:18.027 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  374. 03:27:14.849 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  375. 03:27:14.851 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [710791156@qq.com]
  376. 03:27:14.852 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [da17513ecd8188aec9fe3e6e6c2992f1]
  377. 03:27:14.854 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  378. 03:27:14.854 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  379. 03:27:14.855 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  380. 03:27:14.856 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  381. 03:27:14.857 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  382. 03:27:14.857 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  383. 03:27:14.858 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  384. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.116.167]
  385. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-06-08 11:00:55.0]
  386. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  387. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  388. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:09.0]
  389. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  390. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  391. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  392. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  393. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  394. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500353]
  395. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  396. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  397. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  398. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [710791156@qq.com]
  399. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  400. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  401. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  402. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0127]
  403. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  404. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  405. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  406. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:27:14 EEST 2025]
  407. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  408. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  409. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [牛]
  410. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  411. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [da17513ecd8188aec9fe3e6e6c2992f1]
  412. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  413. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  414. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  415. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20121]
  416. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070104]
  417. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  418. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [710791156@qq.com]
  419. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  420. 03:27:14.859 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20121]
  421. 03:27:19.081 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  422. 03:29:54.725 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  423. 03:29:54.727 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1308702548@qq.com]
  424. 03:29:54.727 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  425. 03:29:54.729 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  426. 03:29:54.729 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  427. 03:29:54.730 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  428. 03:29:54.731 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  429. 03:29:54.732 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  430. 03:29:54.732 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  431. 03:29:54.733 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  432. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.126.113.66]
  433. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-04-10 14:30:50.0]
  434. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  435. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  436. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  437. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  438. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  439. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  440. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  441. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  442. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500784]
  443. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  444. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  445. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  446. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1308702548@qq.com]
  447. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  448. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  449. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  450. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [12]
  451. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  452. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  453. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  454. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:29:54 EEST 2025]
  455. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  456. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  457. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [姜]
  458. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  459. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  460. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  461. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  462. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  463. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20145]
  464. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C08]
  465. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  466. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1308702548@qq.com]
  467. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  468. 03:29:54.734 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20145]
  469. 03:30:29.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  470. 03:31:54.164 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  471. 03:32:06.076 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  472. 03:32:06.078 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  473. 03:32:06.078 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  474. 03:32:06.080 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  475. 03:32:06.081 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  476. 03:32:06.082 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  477. 03:32:06.083 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  478. 03:32:06.084 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  479. 03:32:06.084 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  480. 03:32:06.085 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  481. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  482. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  483. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  484. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  485. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:52:21.0]
  486. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  487. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  488. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  489. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  490. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  491. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  492. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  493. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  494. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  495. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  496. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  497. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  498. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  499. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  500. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  501. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  502. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  503. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:32:06 EEST 2025]
  504. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  505. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  506. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  507. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  508. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  509. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  510. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  511. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  512. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  513. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C04]
  514. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  515. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  516. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  517. 03:32:06.086 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  518. 03:32:40.570 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  519. 03:33:51.864 [http-nio-8500-exec-122] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  520. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  521. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  522. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  523. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  524. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  525. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  526. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  527. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  528. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  529. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  530. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  531. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  532. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  533. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  534. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  535. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  536. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  537. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  538. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  539. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  540. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  541. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  542. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  543. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  544. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  545. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  546. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  547. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  548. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  549. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  550. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  551. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  552. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  553. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  554. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  555. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  556. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  557. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  558. at java.lang.Thread.run(Unknown Source)
  559. 03:33:51.864 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  560. com.crm.rely.backend.exception.LoginException: invalid
  561. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  562. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  563. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  564. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  565. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  566. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  567. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  568. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  569. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  570. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  571. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  572. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  573. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  574. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  575. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  576. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  577. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  578. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  579. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  580. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  581. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  582. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  583. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  584. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  585. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  586. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  587. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  588. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  589. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  590. at java.lang.Thread.run(Unknown Source)
  591. 03:33:51.864 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  592. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  593. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  594. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  595. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  596. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  597. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  598. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  599. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  600. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  601. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  602. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  603. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  604. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  605. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  606. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  607. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  608. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  609. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  610. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  611. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  612. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  613. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  614. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  615. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  616. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  617. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  618. at java.lang.Thread.run(Unknown Source)
  619. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  620. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  621. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  622. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  623. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  624. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  625. ... 25 common frames omitted
  626. 03:35:29.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  627. 03:37:40.163 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  628. 03:37:40.165 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  629. 03:37:40.165 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  630. 03:37:40.167 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  631. 03:37:40.168 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  632. 03:37:40.169 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  633. 03:37:40.169 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  634. 03:37:40.170 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  635. 03:37:40.171 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  636. 03:37:40.172 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  637. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  638. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  639. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  640. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  641. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  642. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  643. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  644. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  645. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  646. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  647. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  648. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  649. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  650. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  651. 03:37:40.172 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  652. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  653. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  654. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  655. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  656. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  657. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  658. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  659. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:37:40 EEST 2025]
  660. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  661. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  662. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  663. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  664. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  665. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  666. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  667. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  668. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  669. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  670. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  671. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  672. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  673. 03:37:40.173 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  674. 03:38:12.428 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  675. 03:39:23.081 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  676. 03:39:23.082 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  677. 03:39:23.083 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  678. 03:39:23.085 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  679. 03:39:23.085 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  680. 03:39:23.086 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  681. 03:39:23.087 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  682. 03:39:23.088 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  683. 03:39:23.088 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  684. 03:39:23.089 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  685. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  686. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  687. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  688. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  689. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  690. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  691. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  692. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  693. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  694. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  695. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  696. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  697. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  698. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  699. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  700. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  701. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  702. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  703. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  704. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  705. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  706. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [112.224.164.172]
  707. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:39:23 EEST 2025]
  708. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  709. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  710. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  711. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  712. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  713. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  714. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  715. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  716. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  717. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  718. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  719. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  720. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  721. 03:39:23.090 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  722. 03:39:28.604 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  723. 03:40:29.009 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  724. 03:42:33.334 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  725. 03:43:59.839 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  726. 03:45:29.009 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  727. 03:50:29.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  728. 03:53:51.243 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  729. 03:53:51.245 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  730. 03:53:51.245 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  731. 03:53:51.247 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  732. 03:53:51.248 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  733. 03:53:51.249 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  734. 03:53:51.249 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  735. 03:53:51.250 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  736. 03:53:51.251 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  737. 03:53:51.252 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  738. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  739. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  740. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  741. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  742. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  743. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  744. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  745. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  746. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  747. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  748. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  749. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  750. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  751. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  752. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  753. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  754. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  755. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  756. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  757. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  758. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  759. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  760. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:53:51 EEST 2025]
  761. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  762. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  763. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  764. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  765. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  766. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  767. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  768. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  769. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  770. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  771. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  772. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  773. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  774. 03:53:51.252 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  775. 03:55:29.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  776. 03:58:03.204 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  777. 03:58:03.206 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [tomatosc1220@163.com]
  778. 03:58:03.206 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  779. 03:58:03.208 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  780. 03:58:03.208 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  781. 03:58:03.209 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  782. 03:58:03.210 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  783. 03:58:03.211 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  784. 03:58:03.212 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  785. 03:58:03.213 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  786. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.44]
  787. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-09-11 05:50:33.0]
  788. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  789. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  790. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:01.0]
  791. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  792. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  793. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  794. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  795. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  796. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500440]
  797. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  798. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  799. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  800. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [tomatosc1220@163.com]
  801. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  802. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  803. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  804. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [10]
  805. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  806. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  807. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  808. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 03:58:03 EEST 2025]
  809. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  810. 03:58:03.213 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  811. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [石东]
  812. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  813. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  814. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  815. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  816. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  817. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20128]
  818. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C07]
  819. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  820. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [tomatosc1220@163.com]
  821. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  822. 03:58:03.214 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20128]
  823. 04:00:05.643 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  824. 04:00:29.013 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  825. 04:01:25.178 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  826. 04:01:25.180 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  827. 04:01:25.180 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  828. 04:01:25.182 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  829. 04:01:25.182 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  830. 04:01:25.184 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  831. 04:01:25.184 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  832. 04:01:25.185 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  833. 04:01:25.186 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  834. 04:01:25.187 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  835. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  836. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  837. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  838. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  839. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  840. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  841. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  842. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  843. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  844. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  845. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  846. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  847. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  848. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  849. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  850. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  851. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  852. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  853. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  854. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  855. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  856. 04:01:25.187 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  857. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:01:25 EEST 2025]
  858. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  859. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  860. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  861. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  862. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  863. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  864. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  865. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  866. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  867. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  868. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  869. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  870. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  871. 04:01:25.188 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  872. 04:01:54.695 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  873. 04:01:54.696 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  874. 04:02:01.843 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  875. 04:02:01.844 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  876. 04:05:29.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  877. 04:06:55.175 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  878. 04:06:55.177 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  879. 04:06:55.177 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  880. 04:06:55.180 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  881. 04:06:55.180 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  882. 04:06:55.181 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  883. 04:06:55.182 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  884. 04:06:55.183 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  885. 04:06:55.183 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  886. 04:06:55.184 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  887. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  888. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  889. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  890. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  891. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  892. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  893. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  894. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  895. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  896. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  897. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  898. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  899. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  900. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  901. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  902. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  903. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  904. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  905. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  906. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  907. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  908. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  909. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:06:55 EEST 2025]
  910. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  911. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  912. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  913. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  914. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  915. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  916. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  917. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  918. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  919. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  920. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  921. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  922. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  923. 04:06:55.185 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  924. 04:09:03.981 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  925. 04:09:03.982 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  926. 04:09:03.982 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  927. 04:09:03.984 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  928. 04:09:03.985 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  929. 04:09:03.986 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  930. 04:09:03.987 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  931. 04:09:03.988 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  932. 04:09:03.988 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  933. 04:09:03.989 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  934. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  935. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  936. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  937. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  938. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  939. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  940. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  941. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  942. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  943. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  944. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  945. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  946. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  947. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  948. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  949. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  950. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  951. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  952. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  953. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  954. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  955. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  956. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:09:03 EEST 2025]
  957. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  958. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  959. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  960. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  961. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  962. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  963. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  964. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  965. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  966. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  967. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  968. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  969. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  970. 04:09:03.990 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  971. 04:09:08.691 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  972. 04:10:29.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  973. 04:15:29.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  974. 04:20:29.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  975. 04:21:33.631 [http-nio-8500-exec-117] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  976. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  977. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  978. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  979. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  980. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  981. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  982. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  983. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  984. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  985. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  986. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  987. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  988. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  989. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  990. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  991. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  992. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  993. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  994. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  995. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  996. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  997. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  998. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  999. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1000. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1001. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1002. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1003. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1004. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1005. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1006. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1007. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1008. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1009. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1010. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1011. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1012. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1013. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1014. at java.lang.Thread.run(Unknown Source)
  1015. 04:21:33.631 [http-nio-8500-exec-117] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1016. com.crm.rely.backend.exception.LoginException: invalid
  1017. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1018. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1019. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1020. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1021. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1022. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1023. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1024. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1025. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1026. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1027. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1028. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1029. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1030. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1031. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1032. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1033. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1034. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1035. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1036. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1037. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1038. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1039. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1040. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1041. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1042. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1043. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1044. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1045. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1046. at java.lang.Thread.run(Unknown Source)
  1047. 04:21:33.632 [http-nio-8500-exec-117] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1048. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  1049. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1050. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1051. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1052. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1053. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1054. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1055. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1056. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1057. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1058. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1059. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1060. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1061. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1062. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1063. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1064. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1065. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1066. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1067. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1068. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1069. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1070. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1071. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1072. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1073. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1074. at java.lang.Thread.run(Unknown Source)
  1075. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  1076. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1077. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1078. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1079. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1080. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1081. ... 25 common frames omitted
  1082. 04:22:39.997 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1083. 04:22:39.999 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1084. 04:22:39.999 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [77db374aba32d6162b0fdaf47bc77849]
  1085. 04:22:46.619 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1086. 04:22:46.621 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1087. 04:22:46.622 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [77db374aba32d6162b0fdaf47bc77849]
  1088. 04:22:59.708 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1089. 04:22:59.710 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1090. 04:22:59.710 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1091. 04:22:59.712 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1092. 04:22:59.712 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1093. 04:22:59.713 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1094. 04:22:59.714 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1095. 04:22:59.715 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1096. 04:22:59.715 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1097. 04:22:59.716 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1098. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1099. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  1100. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1101. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  1102. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  1103. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1104. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1105. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1106. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1107. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1108. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  1109. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1110. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1111. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1112. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  1113. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1114. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1115. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1116. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  1117. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1118. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1119. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  1120. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:22:59 EEST 2025]
  1121. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1122. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1123. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  1124. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1125. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1126. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1127. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1128. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1129. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  1130. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  1131. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1132. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  1133. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1134. 04:22:59.717 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  1135. 04:23:12.262 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1136. 04:24:39.719 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1137. 04:25:09.465 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1138. 04:25:09.467 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  1139. 04:25:09.467 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1140. 04:25:09.469 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1141. 04:25:09.470 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1142. 04:25:09.471 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1143. 04:25:09.472 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1144. 04:25:09.473 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1145. 04:25:09.473 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1146. 04:25:09.474 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1147. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  1148. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  1149. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1150. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  1151. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  1152. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1153. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1154. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1155. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1156. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1157. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  1158. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1159. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1160. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1161. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  1162. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1163. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1164. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1165. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  1166. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1167. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1168. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  1169. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:25:09 EEST 2025]
  1170. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1171. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1172. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  1173. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1174. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1175. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1176. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1177. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1178. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  1179. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  1180. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1181. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  1182. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1183. 04:25:09.475 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  1184. 04:25:29.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1185. 04:26:18.036 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1186. 04:26:18.037 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  1187. 04:26:18.120 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1188. 04:26:18.121 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3388410779@qq.com]
  1189. 04:26:18.121 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1190. 04:26:18.123 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1191. 04:26:18.124 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1192. 04:26:18.125 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1193. 04:26:18.126 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1194. 04:26:18.127 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1195. 04:26:18.127 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1196. 04:26:18.128 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1197. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.158.152]
  1198. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-26 10:12:25.0]
  1199. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1200. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.133.6]
  1201. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-06-04 12:11:29.0]
  1202. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1203. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1204. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1205. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1206. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1207. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500819]
  1208. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1209. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1210. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1211. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3388410779@qq.com]
  1212. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1213. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1214. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1215. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0131]
  1216. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1217. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1218. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  1219. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:26:18 EEST 2025]
  1220. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1221. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1222. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [文慧]
  1223. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1224. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1225. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1226. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1227. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1228. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20148]
  1229. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020704]
  1230. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1231. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [3388410779@qq.com]
  1232. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1233. 04:26:18.129 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20148]
  1234. 04:26:24.444 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1235. 04:28:58.561 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1236. 04:30:29.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1237. 04:35:29.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1238. 04:36:55.982 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1239. 04:36:55.984 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1240. 04:36:55.984 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1241. 04:36:55.986 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1242. 04:36:55.986 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1243. 04:36:55.988 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1244. 04:36:55.988 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1245. 04:36:55.990 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1246. 04:36:55.990 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1247. 04:36:55.991 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1248. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1249. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  1250. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1251. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  1252. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  1253. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1254. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1255. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1256. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1257. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1258. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  1259. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1260. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1261. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1262. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  1263. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1264. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1265. 04:36:55.991 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1266. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  1267. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1268. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1269. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  1270. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:36:55 EEST 2025]
  1271. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1272. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1273. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  1274. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1275. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1276. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1277. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1278. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1279. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  1280. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  1281. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1282. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  1283. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1284. 04:36:55.992 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  1285. 04:40:29.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1286. 04:44:50.277 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1287. 04:45:29.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1288. 04:50:29.028 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1289. 04:51:09.806 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1290. 04:51:09.808 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1291. 04:51:09.808 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1292. 04:51:09.810 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1293. 04:51:09.811 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1294. 04:51:09.812 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1295. 04:51:09.813 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1296. 04:51:09.814 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1297. 04:51:09.814 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1298. 04:51:09.815 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1299. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1300. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  1301. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1302. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  1303. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  1304. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1305. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1306. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1307. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1308. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1309. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  1310. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1311. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1312. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1313. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  1314. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1315. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1316. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1317. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  1318. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1319. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1320. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  1321. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 04:51:09 EEST 2025]
  1322. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1323. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1324. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  1325. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1326. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1327. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1328. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1329. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1330. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  1331. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  1332. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1333. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  1334. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1335. 04:51:09.816 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  1336. 04:51:58.092 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1337. 04:55:29.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1338. 05:00:29.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1339. 05:04:40.932 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1340. 05:05:29.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1341. 05:10:29.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1342. 05:14:50.298 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1343. 05:14:50.300 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1344. 05:14:52.918 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1345. 05:14:52.920 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1346. 05:15:10.251 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  1347. 05:15:10.253 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [841]
  1348. 05:15:10.256 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  1349. 05:15:10.256 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [841]
  1350. 05:15:10.256 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1351. 05:15:10.268 [http-nio-8500-exec-122] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1756347310268,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500888","V_NAME_V":"于丽君","V_EMAIL_V":"632299837@qq.com","V_DATE_TIME_V":"2025-08-28 05:15:10"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"632299837@qq.com"}
  1352. 05:15:10.275 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1353. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1354. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 05:09:03.0]
  1355. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [841]
  1356. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1357. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Thu Aug 28 05:15:10 EEST 2025]
  1358. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1359. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1360. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1361. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Thu Aug 28 05:15:10 EEST 2025]
  1362. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1363. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1364. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市北区长沙路47号]
  1365. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  1366. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1367. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-08-28 05:14:43.0]
  1368. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1369. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1987-07-20 00:00:00.0]
  1370. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500888]
  1371. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1372. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1373. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1374. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1375. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1376. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1377. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1378. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [632299837@qq.com]
  1379. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丽君]
  1380. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1381. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1382. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1383. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1384. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1385. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371083198707216545]
  1386. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1387. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1388. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [113.124.47.231]
  1389. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [于]
  1390. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-08-28 05:09:04.0]
  1391. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1392. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [LiJun Yu]
  1393. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1394. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [27ca0ab8039c092b76100976cd574732]
  1395. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18678974450]
  1396. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1397. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1398. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1399. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [260000]
  1400. 05:15:10.277 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [841]
  1401. 05:15:10.279 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1402. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1403. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 05:12:59.0]
  1404. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [841]
  1405. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1406. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1407. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1408. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1409. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1410. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [841]
  1411. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/841/info/1b0cd1c6e58a4e33971f80d1c0923878.jpeg]
  1412. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1413. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  1414. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2262]
  1415. 05:15:10.279 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1416. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1417. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 05:13:04.0]
  1418. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [841]
  1419. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1420. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1421. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1422. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1423. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1424. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [841]
  1425. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/841/info/e611aa195d1a46bca5c678effe255f41.jpeg]
  1426. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1427. 05:15:10.279 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1428. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2263]
  1429. 05:15:10.280 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1430. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1431. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 05:14:23.0]
  1432. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [841]
  1433. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1434. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1435. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1436. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1437. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1438. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [841]
  1439. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/841/info/6b325ad0d6ac49929494fe849333c188.jpeg]
  1440. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1441. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  1442. 05:15:10.280 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2264]
  1443. 05:15:29.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1444. 05:20:29.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1445. 05:25:29.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1446. 05:26:18.044 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1447. 05:26:18.046 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  1448. 05:30:29.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1449. 05:35:29.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1450. 05:40:29.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1451. 05:42:45.658 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1452. 05:45:29.043 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1453. 05:50:29.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1454. 05:55:29.046 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1455. 06:00:29.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1456. 06:02:34.534 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1457. 06:02:34.535 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1458. 06:02:37.069 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1459. 06:02:37.071 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1460. 06:05:11.763 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1461. 06:05:11.767 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  1462. 06:05:11.767 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1463. 06:05:11.769 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1464. 06:05:11.770 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1465. 06:05:11.772 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1466. 06:05:11.773 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1467. 06:05:11.774 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1468. 06:05:11.774 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1469. 06:05:11.776 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1470. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  1471. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  1472. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1473. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  1474. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  1475. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1476. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1477. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1478. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1479. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1480. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  1481. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1482. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1483. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1484. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  1485. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1486. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1487. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1488. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  1489. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1490. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1491. 06:05:11.777 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  1492. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 06:05:11 EEST 2025]
  1493. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1494. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1495. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  1496. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1497. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1498. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1499. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1500. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1501. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  1502. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  1503. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1504. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  1505. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1506. 06:05:11.778 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  1507. 06:05:18.452 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1508. 06:05:29.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1509. 06:06:31.590 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1510. 06:06:31.592 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1511. 06:06:31.592 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1512. 06:06:31.594 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1513. 06:06:31.595 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1514. 06:06:31.596 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1515. 06:06:31.596 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1516. 06:06:31.597 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1517. 06:06:31.598 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1518. 06:06:31.599 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1519. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1520. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1521. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1522. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1523. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1524. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1525. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1526. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1527. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1528. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1529. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1530. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1531. 06:06:31.599 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1532. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1533. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1534. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1535. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1536. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1537. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1538. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1539. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1540. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1541. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 06:06:31 EEST 2025]
  1542. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1543. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1544. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1545. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1546. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1547. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1548. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1549. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1550. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1551. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1552. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1553. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1554. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1555. 06:06:31.600 [http-nio-8500-exec-107] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1556. 06:06:43.238 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  1557. 06:06:43.241 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [842]
  1558. 06:06:43.243 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  1559. 06:06:43.244 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [842]
  1560. 06:06:43.244 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1561. 06:06:43.256 [http-nio-8500-exec-121] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1756350403256,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500889","V_NAME_V":"李萌瑶","V_EMAIL_V":"3464955294@qq.com","V_DATE_TIME_V":"2025-08-28 06:06:43"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"3464955294@qq.com"}
  1562. 06:06:43.263 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1563. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1564. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 05:55:39.0]
  1565. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [842]
  1566. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1567. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Thu Aug 28 06:06:43 EEST 2025]
  1568. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1569. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1570. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1571. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Thu Aug 28 06:06:43 EEST 2025]
  1572. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1573. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1574. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莱西市水集街道办事处水集三村945号]
  1575. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1576. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1577. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-08-28 06:02:19.0]
  1578. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1579. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-17 00:00:00.0]
  1580. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500889]
  1581. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1582. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1583. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1584. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1585. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1586. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1587. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1588. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3464955294@qq.com]
  1589. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [萌瑶]
  1590. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1591. 06:06:43.264 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1592. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1593. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1594. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1595. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370285200006180028]
  1596. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1597. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1598. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [113.124.47.231]
  1599. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
  1600. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-08-28 05:55:39.0]
  1601. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1602. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MengYao Li]
  1603. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1604. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [2ca6fcb10d74b8819780850aca2fe5eb]
  1605. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15092096350]
  1606. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1607. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1608. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1609. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266600]
  1610. 06:06:43.265 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [842]
  1611. 06:06:43.267 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1612. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1613. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 06:00:41.0]
  1614. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [842]
  1615. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1616. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1617. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1618. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1619. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1620. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [842]
  1621. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/842/info/cf7d53b2ef0e44c58d2563cd4582681b.jpg]
  1622. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1623. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  1624. 06:06:43.267 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2265]
  1625. 06:06:43.268 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1626. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1627. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 06:00:51.0]
  1628. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [842]
  1629. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1630. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1631. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1632. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1633. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1634. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [842]
  1635. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/842/info/91bb7a71b6e6454f9193f263333887c6.jpg]
  1636. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1637. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1638. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2266]
  1639. 06:06:43.268 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  1640. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [113.124.47.231]
  1641. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-08-28 06:01:01.0]
  1642. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [842]
  1643. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1644. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1645. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1646. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1647. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1648. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [842]
  1649. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/842/info/571c146729024d29b05cc8ce4f31e1ce.jpg]
  1650. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1651. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  1652. 06:06:43.268 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2267]
  1653. 06:10:29.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1654. 06:11:11.256 [http-nio-8500-exec-116] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  1655. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  1656. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  1657. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  1658. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  1659. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  1660. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  1661. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  1662. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  1663. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  1664. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  1665. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  1666. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  1667. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1668. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1669. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1670. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1671. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1672. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1673. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1674. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1675. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1676. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1677. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1678. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1679. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1680. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1681. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1682. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1683. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1684. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1685. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1686. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1687. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1688. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1689. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1690. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1691. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1692. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1693. at java.lang.Thread.run(Unknown Source)
  1694. 06:11:11.256 [http-nio-8500-exec-116] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1695. com.crm.rely.backend.exception.LoginException: invalid
  1696. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1697. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1698. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1699. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1700. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1701. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1702. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1703. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1704. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1705. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1706. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1707. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1708. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1709. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1710. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1711. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1712. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1713. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1714. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1715. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1716. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1717. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1718. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1719. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1720. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1721. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1722. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1723. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1724. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1725. at java.lang.Thread.run(Unknown Source)
  1726. 06:11:11.256 [http-nio-8500-exec-116] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1727. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  1728. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1729. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1730. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1731. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1732. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1733. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1734. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1735. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1736. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1737. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1738. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1739. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1740. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1741. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1742. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1743. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1744. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1745. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1746. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1747. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1748. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1749. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1750. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1751. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1752. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1753. at java.lang.Thread.run(Unknown Source)
  1754. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  1755. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1756. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1757. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1758. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1759. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1760. ... 25 common frames omitted
  1761. 06:15:29.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1762. 06:20:29.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1763. 06:25:29.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1764. 06:26:18.055 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1765. 06:26:18.056 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  1766. 06:30:29.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1767. 06:35:29.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1768. 06:40:29.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1769. 06:45:29.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1770. 06:50:29.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1771. 06:55:29.062 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1772. 07:00:29.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1773. 07:05:29.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1774. 07:10:29.065 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1775. 07:15:29.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1776. 07:20:29.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1777. 07:25:29.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1778. 07:26:18.064 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1779. 07:26:18.065 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  1780. 07:30:29.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1781. 07:32:07.725 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1782. 07:32:07.726 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1783. 07:32:07.726 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1784. 07:32:07.729 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1785. 07:32:07.729 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1786. 07:32:07.730 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1787. 07:32:07.730 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1788. 07:32:07.732 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1789. 07:32:07.732 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1790. 07:32:07.733 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1791. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1792. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1793. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1794. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1795. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1796. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1797. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1798. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1799. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1800. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1801. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1802. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1803. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1804. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1805. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1806. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1807. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1808. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1809. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1810. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1811. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1812. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  1813. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 07:32:07 EEST 2025]
  1814. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1815. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1816. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1817. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1818. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1819. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1820. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1821. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1822. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1823. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1824. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1825. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1826. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1827. 07:32:07.734 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1828. 07:32:33.495 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  1829. 07:32:33.496 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  1830. 07:35:29.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1831. 07:40:29.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1832. 07:45:29.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1833. 07:50:29.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1834. 07:55:29.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1835. 08:00:29.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1836. 08:02:10.318 [http-nio-8500-exec-119] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
  1837. 08:02:56.520 [http-nio-8500-exec-108] INFO o.a.coyote.http11.Http11Processor - Error parsing HTTP request header
  1838. Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
  1839. java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
  1840. at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:476)
  1841. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)
  1842. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1843. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1844. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1845. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1846. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1847. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1848. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1849. at java.lang.Thread.run(Unknown Source)
  1850. 08:05:29.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1851. 08:07:58.464 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1852. 08:07:58.466 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1853. 08:07:58.466 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1854. 08:07:58.468 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1855. 08:07:58.469 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1856. 08:07:58.470 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1857. 08:07:58.470 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1858. 08:07:58.472 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1859. 08:07:58.472 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1860. 08:07:58.473 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1861. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1862. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1863. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1864. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1865. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1866. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1867. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1868. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1869. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1870. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1871. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1872. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1873. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1874. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1875. 08:07:58.473 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1876. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1877. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1878. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1879. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1880. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1881. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1882. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1883. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 08:07:58 EEST 2025]
  1884. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1885. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1886. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1887. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1888. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1889. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1890. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1891. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1892. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1893. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1894. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1895. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1896. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1897. 08:07:58.474 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1898. 08:10:29.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1899. 08:15:29.083 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1900. 08:20:29.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1901. 08:25:29.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1902. 08:26:18.073 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1903. 08:26:18.075 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  1904. 08:30:29.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1905. 08:35:29.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1906. 08:38:41.509 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1907. 08:38:41.511 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1908. 08:38:41.511 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1909. 08:38:41.513 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1910. 08:38:41.513 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1911. 08:38:41.514 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1912. 08:38:41.515 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1913. 08:38:41.516 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1914. 08:38:41.516 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1915. 08:38:41.518 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1916. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1917. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1918. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1919. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1920. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1921. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1922. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1923. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1924. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1925. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1926. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1927. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1928. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1929. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1930. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1931. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1932. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1933. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1934. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1935. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1936. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1937. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  1938. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 08:38:41 EEST 2025]
  1939. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1940. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1941. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1942. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1943. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1944. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1945. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1946. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1947. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1948. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1949. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1950. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1951. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1952. 08:38:41.518 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1953. 08:40:29.090 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1954. 08:45:29.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1955. 08:50:29.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1956. 08:51:19.515 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1957. 08:51:19.517 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1958. 08:53:32.175 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1959. 08:53:32.176 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1960. 08:55:29.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1961. 08:59:26.412 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1962. 09:00:29.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1963. 09:05:29.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1964. 09:10:29.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1965. 09:12:30.431 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1966. 09:12:30.434 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  1967. 09:12:30.434 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  1968. 09:12:30.436 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1969. 09:12:30.436 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1970. 09:12:30.438 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1971. 09:12:30.438 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1972. 09:12:30.439 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1973. 09:12:30.440 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1974. 09:12:30.441 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1975. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  1976. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  1977. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1978. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  1979. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  1980. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1981. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1982. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1983. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1984. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1985. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  1986. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1987. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1988. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1989. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  1990. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1991. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1992. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1993. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  1994. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1995. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1996. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  1997. 09:12:30.441 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 09:12:30 EEST 2025]
  1998. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1999. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2000. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  2001. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  2002. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2003. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  2004. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2005. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2006. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  2007. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  2008. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2009. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  2010. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2011. 09:12:30.442 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  2012. 09:12:37.758 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2013. 09:15:29.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2014. 09:17:22.271 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2015. 09:20:29.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2016. 09:25:29.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2017. 09:26:18.085 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2018. 09:26:18.087 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2019. 09:30:29.103 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2020. 09:35:29.105 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2021. 09:40:29.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2022. 09:41:02.242 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2023. 09:41:02.244 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [KIN-maker@outlook.com]
  2024. 09:41:02.244 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2025. 09:41:02.246 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2026. 09:41:02.247 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2027. 09:41:02.248 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2028. 09:41:02.249 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2029. 09:41:02.250 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2030. 09:41:02.250 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2031. 09:41:02.251 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2032. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2033. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  2034. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2035. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  2036. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  2037. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2038. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2039. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2040. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2041. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2042. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  2043. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2044. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2045. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2046. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  2047. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2048. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2049. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2050. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  2051. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2052. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2053. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  2054. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 09:41:02 EEST 2025]
  2055. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2056. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2057. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  2058. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2059. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2060. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2061. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2062. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2063. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  2064. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  2065. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2066. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  2067. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2068. 09:41:02.252 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  2069. 09:45:29.108 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2070. 09:50:29.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2071. 09:55:29.112 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2072. 10:00:29.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2073. 10:05:29.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2074. 10:10:29.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2075. 10:15:29.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2076. 10:20:29.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2077. 10:22:14.799 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2078. 10:22:14.801 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  2079. 10:22:14.801 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2080. 10:22:14.803 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2081. 10:22:14.804 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2082. 10:22:14.805 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2083. 10:22:14.805 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2084. 10:22:14.806 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2085. 10:22:14.807 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2086. 10:22:14.808 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2087. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  2088. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  2089. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2090. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  2091. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  2092. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2093. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2094. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2095. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2096. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2097. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  2098. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2099. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2100. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2101. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  2102. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2103. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2104. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2105. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  2106. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2107. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2108. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  2109. 10:22:14.808 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 10:22:14 EEST 2025]
  2110. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2111. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2112. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  2113. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  2114. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2115. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  2116. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2117. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2118. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  2119. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  2120. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2121. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  2122. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2123. 10:22:14.809 [http-nio-8500-exec-113] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  2124. 10:22:27.040 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2125. 10:25:29.121 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2126. 10:26:18.097 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2127. 10:26:18.098 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2128. 10:30:29.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2129. 10:34:05.958 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2130. 10:35:29.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2131. 10:40:29.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2132. 10:40:42.991 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2133. 10:40:42.993 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  2134. 10:40:42.993 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2135. 10:40:42.995 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2136. 10:40:42.995 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  2137. 10:40:42.996 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2138. 10:40:42.996 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  2139. 10:40:42.997 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2140. 10:40:42.998 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2141. 10:40:42.999 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2142. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  2143. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  2144. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2145. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  2146. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  2147. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2148. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2149. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2150. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2151. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  2152. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  2153. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2154. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2155. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2156. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  2157. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2158. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2159. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2160. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  2161. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2162. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2163. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  2164. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 10:40:42 EEST 2025]
  2165. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2166. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2167. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  2168. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  2169. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2170. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  2171. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2172. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  2173. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2174. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  2175. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  2176. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  2177. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2178. 10:40:42.999 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  2179. 10:41:18.695 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2180. 10:41:18.696 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2181. 10:45:29.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2182. 10:49:40.083 [http-nio-8500-exec-121] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2183. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2184. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  2185. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2186. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2187. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2188. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2189. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2190. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2191. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2192. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2193. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2194. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2195. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2196. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2197. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2198. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2199. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2200. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2201. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2202. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2203. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2204. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2205. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2206. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2207. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2208. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2209. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2210. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2211. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2212. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2213. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2214. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2215. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2216. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2217. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2218. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2219. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2220. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2221. at java.lang.Thread.run(Unknown Source)
  2222. 10:49:40.083 [http-nio-8500-exec-121] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2223. com.crm.rely.backend.exception.LoginException: invalid
  2224. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2225. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2226. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2227. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2228. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2229. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2230. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2231. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2232. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2233. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2234. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2235. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2236. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2237. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2238. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2239. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2240. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2241. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2242. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2243. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2244. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2245. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2246. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2247. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2248. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2249. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2250. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2251. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2252. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2253. at java.lang.Thread.run(Unknown Source)
  2254. 10:49:40.083 [http-nio-8500-exec-121] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2255. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2256. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2257. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2258. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2259. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2260. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2261. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2262. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2263. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2264. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2265. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2266. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2267. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2268. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2269. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2270. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2271. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2272. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2273. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2274. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2275. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2276. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2277. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2278. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2279. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2280. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2281. at java.lang.Thread.run(Unknown Source)
  2282. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2283. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2284. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2285. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2286. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2287. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2288. ... 25 common frames omitted
  2289. 10:50:29.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2290. 10:55:29.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2291. 11:00:29.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2292. 11:05:29.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2293. 11:10:29.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2294. 11:15:29.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2295. 11:19:16.411 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2296. 11:19:16.415 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
  2297. 11:19:16.415 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2298. 11:19:16.418 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2299. 11:19:16.419 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2300. 11:19:16.420 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2301. 11:19:16.421 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2302. 11:19:16.423 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2303. 11:19:16.423 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2304. 11:19:16.425 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2305. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  2306. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
  2307. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2308. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  2309. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:51:46.0]
  2310. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2311. 11:19:16.425 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2312. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2313. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2314. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2315. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
  2316. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2317. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2318. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2319. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
  2320. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2321. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2322. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2323. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
  2324. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2325. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2326. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2327. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 11:19:16 EEST 2025]
  2328. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2329. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2330. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [楠]
  2331. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2332. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2333. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2334. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2335. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2336. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
  2337. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C]
  2338. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2339. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
  2340. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2341. 11:19:16.426 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
  2342. 11:19:26.012 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2343. 11:20:29.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2344. 11:25:29.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2345. 11:26:18.106 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2346. 11:26:18.108 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2347. 11:30:29.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2348. 11:32:13.005 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2349. 11:32:13.007 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  2350. 11:32:13.007 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2351. 11:32:13.009 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2352. 11:32:13.009 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2353. 11:32:13.010 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2354. 11:32:13.011 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2355. 11:32:13.012 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2356. 11:32:13.012 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2357. 11:32:13.013 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2358. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2359. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  2360. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2361. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  2362. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  2363. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2364. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2365. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2366. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2367. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2368. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  2369. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2370. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2371. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2372. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  2373. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2374. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2375. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2376. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  2377. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2378. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2379. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.186.87]
  2380. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 11:32:13 EEST 2025]
  2381. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2382. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2383. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  2384. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2385. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2386. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2387. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2388. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2389. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  2390. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  2391. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2392. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  2393. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2394. 11:32:13.014 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  2395. 11:32:13.661 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2396. 11:32:13.663 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  2397. 11:32:13.663 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2398. 11:32:13.664 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2399. 11:32:13.665 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2400. 11:32:13.665 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2401. 11:32:13.665 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2402. 11:32:13.666 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2403. 11:32:13.666 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2404. 11:32:13.667 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2405. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  2406. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  2407. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2408. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  2409. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  2410. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2411. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2412. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2413. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2414. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2415. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  2416. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2417. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2418. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2419. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  2420. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2421. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2422. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2423. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  2424. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2425. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2426. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.231]
  2427. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 11:32:13 EEST 2025]
  2428. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2429. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2430. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  2431. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2432. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2433. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2434. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2435. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2436. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  2437. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  2438. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2439. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  2440. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2441. 11:32:13.667 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  2442. 11:35:29.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2443. 11:40:29.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2444. 11:41:48.909 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2445. 11:45:29.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2446. 11:48:30.107 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2447. 11:48:30.109 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1308702548@qq.com]
  2448. 11:48:30.109 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2449. 11:48:30.111 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2450. 11:48:30.111 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2451. 11:48:30.113 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2452. 11:48:30.113 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2453. 11:48:30.114 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2454. 11:48:30.115 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2455. 11:48:30.116 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2456. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.126.113.66]
  2457. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-04-10 14:30:50.0]
  2458. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2459. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2460. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2461. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2462. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2463. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2464. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2465. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2466. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500784]
  2467. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2468. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2469. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2470. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1308702548@qq.com]
  2471. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2472. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2473. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2474. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [12]
  2475. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2476. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2477. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2478. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 11:48:30 EEST 2025]
  2479. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2480. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2481. 11:48:30.116 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [姜]
  2482. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  2483. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2484. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  2485. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2486. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2487. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20145]
  2488. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C08]
  2489. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2490. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1308702548@qq.com]
  2491. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2492. 11:48:30.117 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20145]
  2493. 11:48:47.165 [http-nio-8500-exec-107] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2494. 11:49:23.669 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2495. 11:50:29.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2496. 11:55:29.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2497. 11:56:35.775 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2498. 11:56:35.777 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
  2499. 11:56:35.777 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2500. 11:56:35.779 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2501. 11:56:35.779 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2502. 11:56:35.781 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2503. 11:56:35.781 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2504. 11:56:35.782 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2505. 11:56:35.783 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2506. 11:56:35.785 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2507. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  2508. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
  2509. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2510. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  2511. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:51:46.0]
  2512. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2513. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2514. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2515. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2516. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2517. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
  2518. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2519. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2520. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2521. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
  2522. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2523. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2524. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2525. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
  2526. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2527. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2528. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2529. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 11:56:35 EEST 2025]
  2530. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2531. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2532. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [楠]
  2533. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2534. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2535. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2536. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2537. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2538. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
  2539. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C]
  2540. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2541. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
  2542. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2543. 11:56:35.785 [http-nio-8500-exec-118] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
  2544. 11:56:51.258 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2545. 12:00:29.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2546. 12:01:15.134 [http-nio-8500-exec-122] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2547. 12:01:15.135 [http-nio-8500-exec-122] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2548. 12:05:29.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2549. 12:10:29.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2550. 12:15:29.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2551. 12:20:29.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2552. 12:25:29.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2553. 12:26:18.116 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2554. 12:26:18.117 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2555. 12:30:29.152 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2556. 12:32:57.932 [http-nio-8500-exec-127] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2557. 12:32:57.934 [http-nio-8500-exec-127] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2558. 12:33:36.210 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2559. 12:33:36.211 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2560. 12:34:10.006 [http-nio-8500-exec-107] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2561. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2562. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  2563. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2564. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2565. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2566. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2567. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2568. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2569. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2570. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2571. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2572. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2573. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2574. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2575. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2576. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2577. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2578. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2579. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2580. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2581. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2582. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2583. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2584. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2585. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2586. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2587. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2588. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2589. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2590. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2591. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2592. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2593. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2594. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2595. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2596. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2597. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2598. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2599. at java.lang.Thread.run(Unknown Source)
  2600. 12:34:10.006 [http-nio-8500-exec-107] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2601. com.crm.rely.backend.exception.LoginException: invalid
  2602. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2603. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2604. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2605. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2606. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2607. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2608. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2609. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2610. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2611. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2612. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2613. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2614. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2615. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2616. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2617. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2618. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2619. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2620. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2621. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2622. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2623. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2624. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2625. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2626. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2627. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2628. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2629. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2630. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2631. at java.lang.Thread.run(Unknown Source)
  2632. 12:34:10.006 [http-nio-8500-exec-107] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2633. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2634. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2635. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2636. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2637. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2638. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2639. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2640. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2641. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2642. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2643. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2644. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2645. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2646. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2647. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2648. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2649. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2650. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2651. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2652. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2653. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2654. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2655. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2656. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2657. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2658. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2659. at java.lang.Thread.run(Unknown Source)
  2660. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2661. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2662. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2663. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2664. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2665. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2666. ... 25 common frames omitted
  2667. 12:34:10.862 [http-nio-8500-exec-127] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2668. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2669. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  2670. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2671. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2672. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2673. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2674. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2675. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2676. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2677. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2678. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2679. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2680. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2681. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2682. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2683. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2684. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2685. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2686. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2687. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2688. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2689. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2690. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2691. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2692. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2693. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2694. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2695. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2696. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2697. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2698. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2699. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2700. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2701. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2702. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2703. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2704. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2705. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2706. at java.lang.Thread.run(Unknown Source)
  2707. 12:34:10.862 [http-nio-8500-exec-127] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2708. com.crm.rely.backend.exception.LoginException: invalid
  2709. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2710. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2711. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2712. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2713. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2714. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2715. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2716. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2717. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2718. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2719. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2720. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2721. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2722. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2723. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2724. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2725. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2726. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2727. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2728. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2729. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2730. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2731. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2732. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2733. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2734. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2735. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2736. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2737. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2738. at java.lang.Thread.run(Unknown Source)
  2739. 12:34:10.862 [http-nio-8500-exec-127] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2740. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2741. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2742. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2743. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2744. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2745. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2746. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2747. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2748. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2749. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2750. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2751. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2752. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2753. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2754. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2755. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2756. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2757. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2758. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2759. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2760. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2761. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2762. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2763. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2764. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2765. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2766. at java.lang.Thread.run(Unknown Source)
  2767. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2768. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2769. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2770. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2771. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2772. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2773. ... 25 common frames omitted
  2774. 12:34:19.065 [http-nio-8500-exec-122] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2775. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2776. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  2777. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2778. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2779. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2780. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2781. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2782. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2783. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2784. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2785. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2786. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2787. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2788. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2789. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2790. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2791. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2792. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2793. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2794. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2795. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2796. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2797. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2798. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2799. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2800. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2801. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2802. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2803. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2804. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2805. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2806. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2807. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2808. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2809. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2810. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2811. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2812. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2813. at java.lang.Thread.run(Unknown Source)
  2814. 12:34:19.065 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2815. com.crm.rely.backend.exception.LoginException: invalid
  2816. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2817. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2818. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2819. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2820. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2821. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2822. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2823. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2824. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2825. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2826. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2827. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2828. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2829. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2830. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2831. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2832. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2833. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2834. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2835. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2836. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2837. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2838. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2839. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2840. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2841. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2842. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2843. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2844. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2845. at java.lang.Thread.run(Unknown Source)
  2846. 12:34:19.065 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2847. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2848. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2849. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2850. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2851. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2852. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2853. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2854. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2855. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2856. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2857. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2858. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2859. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2860. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2861. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2862. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2863. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2864. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2865. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2866. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2867. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2868. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2869. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2870. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2871. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2872. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2873. at java.lang.Thread.run(Unknown Source)
  2874. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2875. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2876. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2877. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2878. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2879. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2880. ... 25 common frames omitted
  2881. 12:35:29.154 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2882. 12:39:10.753 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2883. 12:39:10.754 [http-nio-8500-exec-116] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2884. 12:40:29.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2885. 12:45:29.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2886. 12:50:29.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2887. 12:55:29.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2888. 13:00:29.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2889. 13:05:29.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2890. 13:10:29.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2891. 13:15:29.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2892. 13:20:29.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2893. 13:25:29.169 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2894. 13:26:18.128 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2895. 13:26:18.128 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2896. 13:30:29.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2897. 13:35:29.173 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2898. 13:35:38.409 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2899. 13:35:38.410 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2900. 13:35:38.411 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2901. 13:35:39.779 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2902. 13:35:39.782 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2903. 13:35:40.448 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2904. 13:35:40.449 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2905. 13:35:41.282 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2906. 13:35:41.283 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2907. 13:35:41.876 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2908. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2909. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2910. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2911. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2912. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2913. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2914. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2915. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2916. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2917. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2918. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2919. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2920. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2921. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2922. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2923. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2924. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2925. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2926. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2927. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2928. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2929. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [112.224.164.172]
  2930. 13:35:41.878 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 13:35:38 EEST 2025]
  2931. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2932. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2933. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2934. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2935. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2936. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2937. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2938. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2939. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2940. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2941. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2942. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2943. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2944. 13:35:41.879 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2945. 13:40:29.175 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2946. 13:45:29.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2947. 13:50:29.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2948. 13:55:29.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2949. 14:00:29.180 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2950. 14:05:29.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2951. 14:10:29.183 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2952. 14:15:29.184 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2953. 14:20:29.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2954. 14:25:29.188 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2955. 14:26:18.140 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2956. 14:26:18.141 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  2957. 14:30:29.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2958. 14:35:29.191 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2959. 14:40:29.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2960. 14:45:29.195 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2961. 14:50:29.196 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2962. 14:50:43.577 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2963. 14:50:43.579 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2964. 14:50:43.579 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2965. 14:50:43.580 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2966. 14:50:43.581 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2967. 14:50:43.582 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2968. 14:50:43.582 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2969. 14:50:43.583 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2970. 14:50:43.584 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2971. 14:50:43.585 [http-nio-8500-exec-121] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2972. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2973. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2974. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2975. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2976. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2977. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2978. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2979. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2980. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2981. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2982. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2983. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2984. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2985. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2986. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2987. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2988. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2989. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2990. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2991. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2992. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2993. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.237]
  2994. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 14:50:43 EEST 2025]
  2995. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2996. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2997. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2998. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2999. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3000. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3001. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3002. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3003. 14:50:43.585 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3004. 14:50:43.586 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3005. 14:50:43.586 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3006. 14:50:43.586 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3007. 14:50:43.586 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3008. 14:50:43.586 [http-nio-8500-exec-121] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3009. 14:50:52.469 [http-nio-8500-exec-116] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3010. 14:55:29.197 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3011. 15:00:29.199 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3012. 15:05:29.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3013. 15:10:29.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3014. 15:15:29.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3015. 15:20:29.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3016. 15:25:29.207 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3017. 15:26:18.151 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3018. 15:26:18.152 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3019. 15:30:29.209 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3020. 15:35:29.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3021. 15:40:29.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3022. 15:45:29.212 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3023. 15:50:29.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3024. 15:55:29.216 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3025. 15:59:09.674 [http-nio-8500-exec-107] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
  3026. 16:00:29.217 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3027. 16:05:29.219 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3028. 16:10:29.219 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3029. 16:15:29.220 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3030. 16:20:29.221 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3031. 16:24:13.716 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3032. 16:24:13.718 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3033. 16:24:13.718 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3034. 16:24:13.720 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3035. 16:24:13.720 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3036. 16:24:13.721 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3037. 16:24:13.722 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3038. 16:24:13.723 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3039. 16:24:13.723 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3040. 16:24:13.724 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3041. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3042. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3043. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3044. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3045. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3046. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3047. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3048. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3049. 16:24:13.724 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3050. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3051. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3052. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3053. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3054. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3055. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3056. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3057. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3058. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3059. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3060. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3061. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3062. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.237]
  3063. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 16:24:13 EEST 2025]
  3064. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3065. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3066. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3067. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3068. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3069. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3070. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3071. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3072. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3073. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3074. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3075. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3076. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3077. 16:24:13.725 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3078. 16:25:29.222 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3079. 16:26:18.159 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3080. 16:26:18.160 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3081. 16:26:36.011 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3082. 16:26:36.013 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3083. 16:26:36.013 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3084. 16:26:36.015 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3085. 16:26:36.016 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3086. 16:26:36.017 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3087. 16:26:36.018 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3088. 16:26:36.019 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3089. 16:26:36.019 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3090. 16:26:36.020 [http-nio-8500-exec-117] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3091. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3092. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3093. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3094. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3095. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3096. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3097. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3098. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3099. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3100. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3101. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3102. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3103. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3104. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3105. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3106. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3107. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3108. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3109. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3110. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3111. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3112. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.237]
  3113. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 16:26:36 EEST 2025]
  3114. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3115. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3116. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3117. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3118. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3119. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3120. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3121. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3122. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3123. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3124. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3125. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3126. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3127. 16:26:36.021 [http-nio-8500-exec-117] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3128. 16:30:29.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3129. 16:35:29.225 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3130. 16:40:29.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3131. 16:45:29.228 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3132. 16:49:07.612 [http-nio-8500-exec-118] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3133. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3134. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3135. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3136. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3137. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3138. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3139. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3140. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3141. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3142. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3143. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3144. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3145. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3146. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3147. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3148. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3149. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3150. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3151. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3152. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3153. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3154. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3155. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3156. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3157. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3158. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3159. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3160. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3161. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3162. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3163. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3164. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3165. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3166. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3167. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3168. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3169. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3170. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3171. at java.lang.Thread.run(Unknown Source)
  3172. 16:49:07.612 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3173. com.crm.rely.backend.exception.LoginException: invalid
  3174. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3175. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3176. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3177. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3178. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3179. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3180. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3181. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3182. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3183. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3184. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3185. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3186. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3187. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3188. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3189. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3190. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3191. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3192. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3193. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3194. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3195. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3196. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3197. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3198. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3199. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3200. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3201. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3202. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3203. at java.lang.Thread.run(Unknown Source)
  3204. 16:49:07.612 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3205. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3206. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3207. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3208. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3209. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3210. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3211. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3212. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3213. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3214. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3215. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3216. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3217. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3218. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3219. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3220. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3221. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3222. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3223. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3224. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3225. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3226. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3227. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3228. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3229. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3230. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3231. at java.lang.Thread.run(Unknown Source)
  3232. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3233. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3234. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3235. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3236. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3237. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3238. ... 25 common frames omitted
  3239. 16:50:29.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3240. 16:55:29.230 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3241. 17:00:29.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3242. 17:05:29.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3243. 17:08:38.795 [http-nio-8500-exec-107] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
  3244. 17:08:53.375 [http-nio-8500-exec-127] INFO o.a.coyote.http11.Http11Processor - Error parsing HTTP request header
  3245. Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
  3246. java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
  3247. at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:476)
  3248. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)
  3249. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3250. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3251. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3252. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3253. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3254. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3255. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3256. at java.lang.Thread.run(Unknown Source)
  3257. 17:10:29.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3258. 17:11:57.073 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3259. 17:11:57.075 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3260. 17:11:57.075 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3261. 17:11:57.077 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3262. 17:11:57.077 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3263. 17:11:57.078 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3264. 17:11:57.078 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3265. 17:11:57.080 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3266. 17:11:57.080 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3267. 17:11:57.081 [http-nio-8500-exec-119] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3268. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3269. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3270. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3271. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3272. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3273. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3274. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3275. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3276. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3277. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3278. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3279. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3280. 17:11:57.081 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3281. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3282. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3283. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3284. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3285. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3286. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3287. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3288. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3289. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.237]
  3290. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 17:11:57 EEST 2025]
  3291. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3292. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3293. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3294. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3295. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3296. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3297. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3298. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3299. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3300. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3301. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3302. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3303. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3304. 17:11:57.082 [http-nio-8500-exec-119] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3305. 17:12:02.555 [http-nio-8500-exec-113] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3306. 17:15:29.237 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3307. 17:20:29.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3308. 17:25:29.241 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3309. 17:26:18.168 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3310. 17:26:18.169 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3311. 17:30:29.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3312. 17:35:29.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3313. 17:40:29.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3314. 17:45:29.247 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3315. 17:50:29.249 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3316. 17:55:29.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3317. 18:00:29.253 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3318. 18:05:29.254 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3319. 18:10:29.255 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3320. 18:15:29.257 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3321. 18:20:29.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3322. 18:25:29.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3323. 18:26:18.182 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3324. 18:26:18.182 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3325. 18:30:29.261 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3326. 18:35:29.263 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3327. 18:40:29.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3328. 18:45:29.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3329. 18:50:29.267 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3330. 18:55:29.269 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3331. 19:00:29.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3332. 19:05:29.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3333. 19:10:29.273 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3334. 19:15:29.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3335. 19:20:29.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3336. 19:25:29.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3337. 19:26:18.189 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3338. 19:26:18.190 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3339. 19:30:29.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3340. 19:35:29.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3341. 19:40:29.280 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3342. 19:45:29.282 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3343. 19:50:29.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3344. 19:55:29.285 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3345. 20:00:29.287 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3346. 20:05:29.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3347. 20:10:29.290 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3348. 20:14:08.651 [http-nio-8500-exec-117] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
  3349. 20:14:17.866 [http-nio-8500-exec-118] INFO o.a.coyote.http11.Http11Processor - Error parsing HTTP request header
  3350. Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
  3351. java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
  3352. at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:476)
  3353. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)
  3354. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3355. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3356. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3357. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3358. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3359. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3360. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3361. at java.lang.Thread.run(Unknown Source)
  3362. 20:15:29.292 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3363. 20:16:16.880 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3364. 20:16:16.882 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15230358136@163.com]
  3365. 20:16:16.882 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
  3366. 20:16:16.884 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3367. 20:16:16.884 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3368. 20:16:16.885 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3369. 20:16:16.886 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3370. 20:16:16.887 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3371. 20:16:16.887 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3372. 20:16:16.888 [http-nio-8500-exec-108] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3373. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.250]
  3374. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-10-24 05:20:08.0]
  3375. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3376. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  3377. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:13.0]
  3378. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3379. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3380. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3381. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3382. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3383. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500466]
  3384. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3385. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3386. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3387. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [15230358136@163.com]
  3388. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3389. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3390. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3391. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [11]
  3392. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3393. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3394. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [119.126.115.134]
  3395. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Thu Aug 28 20:16:16 EEST 2025]
  3396. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3397. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3398. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [春亮]
  3399. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  3400. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
  3401. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  3402. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3403. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3404. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20130]
  3405. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C01]
  3406. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3407. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [15230358136@163.com]
  3408. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3409. 20:16:16.889 [http-nio-8500-exec-108] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20130]
  3410. 20:16:28.878 [http-nio-8500-exec-118] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3411. 20:20:33.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3412. 20:25:33.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3413. 20:26:22.034 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3414. 20:26:22.035 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3415. 20:27:28.349 [http-nio-8500-exec-118] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3416. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3417. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3418. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3419. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3420. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3421. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3422. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3423. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3424. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3425. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3426. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3427. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3428. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3429. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3430. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3431. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3432. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3433. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3434. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3435. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3436. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3437. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3438. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3439. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3440. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3441. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3442. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3443. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3444. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3445. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3446. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3447. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3448. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3449. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3450. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3451. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3452. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3453. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3454. at java.lang.Thread.run(Unknown Source)
  3455. 20:27:28.349 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3456. com.crm.rely.backend.exception.LoginException: invalid
  3457. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3458. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3459. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3460. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3461. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3462. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3463. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3464. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3465. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3466. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3467. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3468. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3469. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3470. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3471. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3472. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3473. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3474. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3475. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3476. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3477. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3478. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3479. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3480. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3481. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3482. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3483. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3484. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3485. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3486. at java.lang.Thread.run(Unknown Source)
  3487. 20:27:28.349 [http-nio-8500-exec-118] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3488. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3489. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3490. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3491. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3492. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3493. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3494. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3495. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3496. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3497. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3498. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3499. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3500. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3501. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3502. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3503. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3504. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3505. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3506. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3507. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3508. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3509. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3510. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3511. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3512. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3513. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3514. at java.lang.Thread.run(Unknown Source)
  3515. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3516. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3517. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3518. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3519. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3520. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3521. ... 25 common frames omitted
  3522. 20:30:33.132 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3523. 20:35:33.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3524. 20:40:33.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3525. 20:45:33.137 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3526. 20:50:33.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3527. 20:55:33.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3528. 21:00:33.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3529. 21:05:33.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3530. 21:10:33.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3531. 21:15:33.145 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3532. 21:20:33.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3533. 21:25:33.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3534. 21:26:22.049 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3535. 21:26:22.050 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3536. 21:30:33.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3537. 21:35:33.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3538. 21:40:33.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3539. 21:45:33.152 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3540. 21:50:33.154 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3541. 21:55:33.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3542. 21:56:56.136 [http-nio-8500-exec-122] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3543. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3544. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  3545. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3546. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3547. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3548. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3549. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3550. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3551. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3552. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3553. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3554. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3555. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3556. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3557. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3558. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3559. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3560. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3561. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3562. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3563. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3564. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3565. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3566. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3567. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3568. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3569. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3570. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3571. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3572. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3573. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3574. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3575. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3576. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3577. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3578. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3579. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3580. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3581. at java.lang.Thread.run(Unknown Source)
  3582. 21:56:56.136 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3583. com.crm.rely.backend.exception.LoginException: invalid
  3584. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3585. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3586. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3587. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3588. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3589. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3590. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3591. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3592. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3593. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3594. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3595. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3596. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3597. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3598. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3599. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3600. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3601. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3602. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3603. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3604. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3605. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3606. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3607. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3608. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3609. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3610. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3611. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3612. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3613. at java.lang.Thread.run(Unknown Source)
  3614. 21:56:56.136 [http-nio-8500-exec-122] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3615. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3616. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3617. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3618. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3619. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3620. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3621. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3622. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3623. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3624. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3625. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3626. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3627. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3628. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3629. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3630. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3631. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3632. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3633. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3634. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3635. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3636. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3637. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3638. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3639. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3640. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3641. at java.lang.Thread.run(Unknown Source)
  3642. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3643. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3644. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3645. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3646. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3647. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3648. ... 25 common frames omitted
  3649. 22:00:33.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3650. 22:05:33.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3651. 22:10:33.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3652. 22:15:33.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3653. 22:18:43.020 [http-nio-8500-exec-108] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3654. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3655. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3656. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3657. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3658. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3659. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3660. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3661. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3662. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3663. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3664. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3665. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3666. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3667. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3668. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3669. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3670. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3671. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3672. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3673. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3674. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3675. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3676. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3677. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3678. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3679. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3680. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3681. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3682. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3683. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3684. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3685. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3686. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3687. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3688. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3689. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3690. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3691. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3692. at java.lang.Thread.run(Unknown Source)
  3693. 22:18:43.020 [http-nio-8500-exec-108] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3694. com.crm.rely.backend.exception.LoginException: invalid
  3695. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3696. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3697. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3698. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3699. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3700. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3701. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3702. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3703. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3704. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3705. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3706. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3707. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3708. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3709. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3710. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3711. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3712. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3713. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3714. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3715. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3716. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3717. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3718. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3719. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3720. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3721. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3722. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3723. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3724. at java.lang.Thread.run(Unknown Source)
  3725. 22:18:43.020 [http-nio-8500-exec-108] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3726. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3727. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3728. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3729. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3730. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3731. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3732. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3733. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3734. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3735. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3736. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3737. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3738. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3739. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3740. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3741. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3742. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3743. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3744. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3745. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3746. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3747. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3748. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3749. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3750. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3751. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3752. at java.lang.Thread.run(Unknown Source)
  3753. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3754. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3755. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3756. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3757. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3758. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3759. ... 25 common frames omitted
  3760. 22:20:33.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3761. 22:25:33.163 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3762. 22:26:22.063 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3763. 22:26:22.065 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3764. 22:30:33.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3765. 22:35:33.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3766. 22:40:33.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3767. 22:45:33.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3768. 22:50:33.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3769. 22:55:33.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3770. 23:00:33.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3771. 23:05:33.172 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3772. 23:10:33.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3773. 23:15:33.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3774. 23:20:33.177 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3775. 23:25:33.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3776. 23:26:22.076 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3777. 23:26:22.077 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Wed Aug 27 00:00:00 EEST 2025]
  3778. 23:30:33.180 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3779. 23:35:33.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3780. 23:40:33.183 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3781. 23:45:33.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3782. 23:50:33.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3783. 23:55:33.188 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration